2

我正在使用PHP 5.3.3-7+squeeze14运行Debian。有几个 cronjobs 可以 gc 清理我的 php 会话:


(cron.d)09,39 *     * * *     root   [ -x /usr/lib/php5/maxlifetime ] && [ -d /var/lib/php5 ] && find /var/lib/php5/ -type f -cmin +$(/usr/lib/php5/maxlifetime) -delete
(crontab)47 * * * * root cd / && run-parts --report /etc/cron.hourly
(crontab)45 0 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
(crontab)34 1 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
(crontab)44 3 4 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )

这些 Cron 抛出....

... cron.log

Jan  4 11:47:01 flowl /USR/SBIN/CRON[3976]: (root) CMD (cd / && run-parts --report /etc/cron.hourly)
Jan  4 12:09:01 flowl /USR/SBIN/CRON[3983]: (root) CMD (  [ -x /usr/lib/php5/maxlifetime ] && [ -d /var/lib/php5 ] && find /var/lib/php5/ -type f -cmin +$(/usr/lib/php5/maxlifetime) -delete)

... auth.log

Jan  4 12:09:01 flowl CRON[3982]: pam_unix(cron:session): session opened for user root by (uid=0)`
Jan  4 12:09:01 flowl CRON[3982]: pam_unix(cron:session): session closed for user root`

如何从(至少)auth.log 中删除(所有这些烦人的)cron 日志?我没有调查 cron.log,因为我经常可以用这些来生活。

提前致谢!担

4

1 回答 1

2

取自http://blog.flowl.info/2013/reduce-syslog-logging-io-raspberrypi/:由于 rsyslog 替换了 syslog,我们可以执行以下操作:

/etc/rsyslogd.conf:替换auth,authpriv.* /var/log/auth.log

经过:

:msg, contains, "pam_unix(cron:session)" ~
auth,authpriv.* /var/log/auth.log

其他日志文件也是如此

于 2013-08-08T07:32:23.863 回答