gpt4 book ai didi

bash - 管道 cronjob 错误邮件

转载 作者:行者123 更新时间:2023-12-02 04:48:32 24 4
gpt4 key购买 nike

我有一份 root 的工作

0 0 * * * /usr/bin/time /path/to/mysqlbackup.sh | /bin/mail -s "MySQL Backup" "admin@example.com"

脚本在运行时会回显一些信息,然后按预期通过电子邮件发送。

问题是如果发生错误,它不会被发送到电子邮件,所以我无法捕捉到它。如果我查看 root 用户的 mail,我会看到类似

的错误

mysqldump: Got error: 2002: Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2) when trying to connect

如何将脚本产生的所有输出发送到我的电子邮箱?


注意事项

定时任务

* * * * * (/usr/bin/time /root/utils/test.sh 2&>1) | /usr/bin/tee /tmp/cron.test | /bin/mail -s "test" "srobbins@example.com"

在 root 的邮件中找到消息

[root@example utils]# mail
Mail version 8.1 6/6/93. Type ? for help.
"/var/spool/mail/root": 1 message 1 new
>N 1 root@example Fri Oct 11 08:35 23/1025 "Cron <root@example> (/usr/bin/time /root/utils/test.sh 2&>1) | /usr/bin/tee /tmp/cron.test | /bin/mail -s "test" "srobbins@example.com""
&
Message 1:
From root@example.com Fri Oct 11 08:35:01 2013
Date: Fri, 11 Oct 2013 08:35:01 -0700
From: root@example.com (Cron Daemon)
To: root@example.com
Subject: Cron <root@example> (/usr/bin/time /root/utils/test.sh 2&>1) | /usr/bin/tee /tmp/cron.test | /bin/mail -s "test" "srobbins@example.com"
Content-Type: text/plain; charset=UTF-8
Auto-Submitted: auto-generated
X-Cron-Env: <SHELL=/bin/sh>
X-Cron-Env: <HOME=/root>
X-Cron-Env: <PATH=/usr/bin:/bin>
X-Cron-Env: <LOGNAME=root>
X-Cron-Env: <USER=root>

Null message body; hope that's ok

/root/utils/test.sh 的内容

echo "Starting backup at $(date)" 
mysql -u potato -e "show status" # produces error
FILE="/path/to/file.bak"
FILESIZE=`du -h $FILE | cut -f1`
echo $FILESIZE

/tmp/cron.test 为空

发送的邮件正文为空

最佳答案

基本上,您需要像处理 STDOUT 一样处理 STDERR。

在 cron 中管理它

0 0 * * * (/usr/bin/time /path/to/mysqlbackup.sh 2&>1) | /bin/mail -s "MySQL Backup" "admin@example.com" 

这适用于 Ubuntu,您报告它对您不起作用(空邮件正文)。我有兴趣深入研究它,但与此同时......

调整脚本

您可以通过重定向 STDERR 使您的脚本只打印到 STDOUT(至少对于那个命令到 STDOUT)

echo "Starting backup at $(date)" 
mysql -u potato -e "show status" 2>&1 # produces error we want, so redirect it
FILE="/path/to/file.bak"
FILESIZE=`du -h $FILE | cut -f1`
echo $FILESIZE

如果您希望将脚本中的任何错误发送到 STDOUT,您可以通过在脚本顶部添加以下代码将 STDERR 全局重定向到 STDOUT:

exec 2>&1

玩具示例

job.sh

#prints out to STDOUT and STDERR
echo good
echo error >&2
echo good

脚本.sh

#this runs job.sh redirecting STDERR to STDOUT
sh job.sh 2>&1

现在运行 job.sh,使用各种重定向显示它打印到 STDOUT 和 STDERR

$sh job.sh > /dev/null 
error
$sh job.sh 2> /dev/null
good
good

运行 script.sh 显示它只打印到 STDOUT,即使 job.sh 正在打印到 STDERR

$sh script.sh > /dev/null 
$sh script.sh 2> /dev/null
good
error
good

关于bash - 管道 cronjob 错误邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19307056/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com