EC2 インスタンスは、cron ジョブが成功または失敗するたびにメールを送信します。これを停止するにはどうすればよいですか?

EC2 インスタンスは、cron ジョブが成功または失敗するたびにメールを送信します。これを停止するにはどうすればよいですか?

私たちは毎日、cronデーモンから何百ものメールを受け取ります[メールアドレス]どうすればこれを止めることができますか? これらのメールは、弊社が設定したカスタム cron ジョブと、AWS が設定したその他のジョブに関するものです。

メールの件名は次のようになります。

Cron <www-data@ip-172-12-34-56> [ -x /usr/share/awstats/tools/update.sh ] && /usr/share/awstats/tools/date.sh

これはデフォルトの動作だと読みましたが、これをオフにする方法が見つかりません。

どちらにも、通常の cron ジョブのタイミング以外のディレクティブや内容は含まれcrontab -lません。sudo crontab -lMAILTO


> cat vim /etc/crontab    cat: vim: No such file or directory
# /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 )

答え1

いくつかの選択肢があります。

MAILTO="*address*"crontab の先頭に変数を設定して、root@ 以外の電子メール アドレスを指定したり、存在しない電子メール アカウントに送信したりすることができます。

出力リダイレクトを使用できるので、>/dev/null 2>&1cron ジョブの最後に追加することですべてを /dev/null に送信できます。

または、出力リダイレクトの組み合わせを使用して、エラーのみを電子メールやログ ファイルなどに送信することもできます。

http://wiki.bash-hackers.org/syntax/redirectionリダイレクトの使用方法に関する例がさらにいくつかあります。

関連情報