On my Ubuntu-Desktop and on my debian-server I have a script which needs to be executed each minute (a script that calls the minute-tic of my space online browsergame).
The problem is that on debian derivates cron is logging to /var/log/syslog each time it executes. I end up seeing repeated the message it was executed over and over in /var/log/syslog:
Nov 11 16:50:01 eclabs /USR/SBIN/CRON[31636]: (root) CMD (/usr/bin/w3m -no-cookie http://www.spacetrace.org/secret_script.php > /dev/null 2>&1)
I know that in order to suppress the output of a program I can redirect it to /dev/null, for example to hide all error and warning messages from a program I can create a line in crontab like this
* * * * * root /usr/local/sbin/mycommand.sh > /dev/null
But I would like to run a cronjob and be sure that all generated output or errors are piped to NULL, so it doesn’t generate any messages in syslog and doesn’t generate any emails
EDIT:
there is a solution to redirect the cron-logs into a separate log like proposed here by changing /etc/syslog.conf
But the drawback is, that then ALL output of all cronjobs is redirected.
Can I somehow only redirect a single cronjob to a separate log file? Preferably configurable inside the cron.hourly file itself.
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
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="<a href="https://getridbug.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="4c2d282125220c3f232129282321622f2321">[email protected]</a>" * * * * * 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.
Method 2
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.
Method 3
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 ""
Method 4
Redirecting to /dev/null hides the output from the command. If you don’t do this then cron mails the output to you. The output from the command never ends up in system logs (at least not by cron’s doing).
It is usually a bad idea to redirect output to /dev/null, especially error output: if something goes wrong, you won’t have any information to diagnose the problem. If you don’t want to receive a mail, redirect to a log file.
None of this is relevant to your problem however. The message you quote is from cron itself. Cron writes a log entry every time it runs a job. No cron implementation that I’ve seen allows you to use different logging configurations for different jobs.
If you want to omit some jobs, your only option is to apply text filtering to the log messages in the syslog daemon. The de facto standard for syslog filtering is to run rsyslog (which may or may not be the default on your system) as the syslog daemon. See goldilocks’s answer for how to filter out this particular command.
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0