如何停止来自Cron <root @ machine>的电子邮件报告(每小时)


15

我正在运行Ubuntu 12.04,已经用自己的gmail帐户配置了“ ssmtp”,现在每小时收到一封包含报告的电子邮件,这是一个示例:

From: root <my@gmail.com> Date: 2012/8/13 Subject: Cron <root@one> [
-x /usr/lib/php5/maxlifetime ] && [ -d /var/lib/php5 ] && find /var/lib/php5/ -depth
-mindepth 1 -maxdepth 1 -type f -cmin
+$(/usr/lib/php5/maxlifetime) ! -execdir fuser -s {} 2>/dev/null \; -delete To: root

Failed loading /usr/lib/php5/20090626/xdebug.so: 
/usr/lib/php5/20090626/xdebug.so: cannot open shared object file: No
such file or directory

更多信息:

$ cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=12.04
DISTRIB_CODENAME=precise
DISTRIB_DESCRIPTION="Ubuntu 12.04 LTS"

更多...

$ sudo crontab -l -u root
no crontab for root

更多...

$ nano /etc/crontab
# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.

SHELL=/bin/sh PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

# m h dom mon dow user  command
17 *    * * *   root    cd / && run-parts --report /etc/cron.hourly 
25 6    * * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily ) 
47 6    * * 7   root    test -x /usr/sbin/anacron || ( cd / && run-parts
--report /etc/cron.weekly ) 
52 6    1 * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
#

我已经评论了该行17 * * * * root cd / && run-parts --report /etc/cron.hourly,但是电子邮件仍在到达。

Answers:


13

只需在下面添加 /etc/crontab

MAILTO=""

要完全停止crontab发送电子邮件,请编辑/etc/sysconfig/crond并添加此内容CRONDARGS='-m off'
保存并重新启动crond。


似乎必须将此行添加到每个要静音的crontab文件中(至少在我的测试中)。也要注意用户克朗生活在其他地方:serverfault.com/a/325344/210994
ThorSummoner 2015年

@ThorSummoner当提到“ ...每个crontab文件... ”时,是在cbangtab 本身还是在脚本中,在shebang行下方?
3kstc

8

当cron启动进程时,它将捕获到达stdout和stderr的所有输出,并将其发送到电子邮件中。为了防止这些电子邮件,您可以将stdout和stderr重定向到您监视的日志文件中,或者将它们重定向到/ dev / null(如果不需要的话)。

17 *    * * *   root    cd / && run-parts --report /etc/cron.hourly 2>&1 > /dev/null

嗨!感谢您这么快回答我!我发现了我认为是造成此问题的问题: bugs.launchpad.net/ubuntu/+source/php5/+bug/876387 因此,在问题解决之前,我将采用您的解决方案!再次感谢!nonox
user83162

我喜欢这个答案,因为它可以禁用特定作业的邮件,而不是MAILTO =“”会禁用所有cron邮件。
mike 2015年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.