Pesquisar neste blog

sexta-feira, 23 de dezembro de 2011

How to Disable Linux and Unix Cron Jobs (Crontab) Email Sending

Cron jobs in Unix, Linux, Solar, BSD or other Unix-like operating system is similar to scheduled tasks in Windows OS. Cron utility allows tasks (aka cron jobs) to be automatically run in the background at regular intervals or preset and predetermined time by the cron daemon. All cron jobs or tasks are defined in crontab (cron table) file, which contains the schedule and specified times of the cron entries to be run.

When an cron job runs, cron daemon will send an email to the user account that executing the cronjob. The notification or result mail messages normally contains output result or respond of the task or command executed by the cron job.

Administrator or cron jobs schedulers who do not want to receive any email every time cron jobs are run can easily turn off and disable the email sending by crontab. To disable email delivery on execution of cron jobs, just append the following command to the end of the cron job line in crontab. Each cron job that does not need email sending will have to be added.

> /dev/null 2>&1

For example,

30 8 * * * command > /dev/null 2>&1

Tip: To edit cron jobs, type “crontab -e” in most system.

Restart cron jobs deamon when done.

Nenhum comentário: