您的位置:首页 > 其它

在 Ubuntu 中, 将 cron 的默认日志存放在 /var/log/cron

2012-08-03 18:03 393 查看
1,修改rsyslog文件:

/etc/rsyslog.d/50-default.conf

将 rsyslog 文件中的 #cron.* 前的 # 删掉;

2,重启rsyslog服务:

service rsyslog restart


3,重启cron服务:

service cron restart


4,查看日志文件:

tail -f /var/log/cron.log


其实,Ubuntu中,cron的日志是存在的:
By default the cron log in ubuntu is located at /var/log/syslog. Use the below command to check the cron entries in this file.
grep cron /var/log/syslog

只需执行:
grep cron /var/log/syslog
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: