How do I completely silence a cronjob to /dev/null/?

Make the line this:

* * * * *       root    /usr/local/sbin/mycommand.sh > /dev/null 2>&1

This will capture both STDOUT (1) and STDERR (2) and send them to /dev/null.

MAILTO

You can also disable the email by setting and then resetting the MAILTO="" which will disable the sending of any emails.

Example

MAILTO=""
* * * * *       root    /usr/local/sbin/mycommand.sh > /dev/null 2>&1

MAILTO="[email protected]"
 * * * * *      root    /usr/local/sbin/myothercommand.sh

Additional messaging

Often times you'll get the following types of messages in /var/log/syslog:

Nov 11 08:17:01 manny CRON[28381]: (root) CMD (   cd / && run-parts --report /etc/cron.hourly)

These are simply notifications via cron that a directory of cronjobs was executed. This message has nothing to do directly with these jobs, instead it's coming from the crond daemon directly. There isn't really anything you can do about these, and I would encourage you to not disable these, since they're likely the only window you have into the goings on of crond via the logs.

If they're very annoying to you, you can always direct them to an alternative log file to get them out of your /var/log/syslog file, through the /etc/syslog.conf configuration file for syslog.


have a script which needs to be executed each minute. The problem is that cron is logging to /var/log/syslog each time it executes. I end up seeing repeated the message it was ececuted over and over in /var/log/syslog

Since nothing you do seems to stop this, it is worth asking: what exactly is this script and what exactly is the message you see in syslog?

If slm's suggestion did not work, this is because something is logging to syslog directly -- either cron, as seems to be implied in some of your comments, or else the process run by cron. Messages sent to syslog do not come from stdin or stderr, so 2>&1&> will not help.

There might be a way to configure the behavior of the application in question, except we don't know what it is.

There certainly is a way to configure most contemporary syslog implementations (there are several) to filter messages very specifically. For example, if there is a unique tag used in the log message, you can target that. But again, since we don't know anything about the particular message, or which syslogd you use, then there's nothing specific that can be recommended.

My general point is that if you don't want to redirect/filter messages because "this will redirect all the messages", then you can refine the filtering technique. The server fault thread you linked to just mentions filtering by facility (*.cron) -- but you can configure more specialized filters than that.


Debian and Ubuntu both have rsyslog available. On debian 5+ it is the default syslog, on ubuntu it is an option, so you'll have to install it. To create a filter that targets some kind of specific content, place this near the top (i.e., before any other rules, but after the general configuration, module loading, etc) of /etc/rsyslog.conf. Best way to do this is not to edit the rsyslog.conf itself, but to create a file in /etc/rsyslog.conf.d/ directory, with name starting with two digits which are less than 50, ie /etc/rsyslog.conf.d/15-my-filter.conf. You can put there something like this:

:msg, contains, "/usr/bin/w3m -no-cookie" /dev/null

This will send the message to /dev/null (or a separate log if you prefer). However, the message will still be passed through the subsequent rules which send it to /var/log/syslog. To prevent that:

& stop

Immediately after that other line. This throws away anything which matched the preceding rule. Or, for single-line rules you can just add stop to the end of that rule line.

You have to restart rsyslogd after changing the configuration, (e.g. on systemd systems systemctl restart rsyslog):

kill -HUP $(cat /var/run/rsyslogd.pid)

HUP causes the daemon to restart itself.


Change /etc/default/cron

# Or, to log standard messages, plus jobs with exit status != 0:
# EXTRA_OPTS='-L 5'
#
# For quick reference, the currently available log levels are:
#   0   no logging (errors are logged regardless)
#   1   log start of jobs
#   2   log end of jobs
#   4   log jobs with exit status != 0
#   8   log the process identifier of child process (in all logs)
#
EXTRA_OPTS="-L 0"

By default the EXTRA_OPTS line is ""