如何沉默PHP Session GC Cron

时间:2013-01-04 12:40:09

标签: php logging cron debian

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


(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 )

这些Crons扔了......

... 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,我常常可以用这些来生活。

提前致谢! 丹

1 个答案:

答案 0 :(得分: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

其他日志文件也是如此