发现/var/log下没有cron的日志怎么办?

1,修改rsyslog文件:

[ruby]  view plain  copy
  1. /etc/rsyslog.d/50-default.conf  

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


2,重启rsyslog服务:

[ruby]  view plain  copy
  1. service rsyslog restart  

3,重启cron服务:

[ruby]  view plain  copy
  1. service cron restart  

4,查看日志文件:

[ruby]  view plain  copy
  1. 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


只需执行:

[ruby]  view plain  copy
  1. grep cron /var/log/syslog  

你可能感兴趣的:(linux,crontab,linux)