我有根
的工作0 0 * * * /usr/bin/time /path/to/mysqlbackup.sh | /bin/mail -s "MySQL Backup" "admin@example.com"
脚本会在运行时回显一些信息,然后按预期通过电子邮件发送。
问题是如果发生错误,它没有被发送到电子邮件,所以我无法捕获它。如果我查看root用户的mail
,我会看到错误,如
mysqldump:收到错误:2002:无法通过socket' /var/lib/mysql/mysql.sock'连接到本地MySQL服务器; (2)试图连接时
如何将脚本产生的所有输出发送到我的电子邮件?
Cron工作
* * * * * (/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为空
发送的电子邮件正文为空
答案 0 :(得分:2)
基本上你需要以与STDOUT相同的方式处理STDERR。
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
script.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
答案 1 :(得分:1)
您还可以使用MAILTO
变量:
MAILTO="admin@example.com"
0 0 * * * /usr/bin/time /path/to/mysqlbackup.sh