红联Linux门户
Linux帮助

Ubuntu查看crontab运行日志

发布时间:2015-11-28 10:18:21来源:linux网站作者:低调小一

起因
今天发现一台服务器crontab定时运行scp的备份脚本失败,手动执行脚本没问题,所以想从crontab的日志里找原因,突然发现我的/var/log下没有cron日志,这里记录一下如何ubuntu server如何查看crontab日志


crontab记录日志
修改rsyslog
sudo vim /etc/rsyslog.d/50-default.conf 

cron.*              /var/log/cron.log #将cron前面的注释符去掉 


重启rsyslog

sudo  service rsyslog  restart 


查看crontab日志

less  /var/log/cron.log 


crontab问题定位
查看日志
/var/log/cron.log 和 /var/mail/$user
因为crontab运行日志记录在cron.log,开启sendmail服务会给当前crontab运行属主发送邮件


ssh错误信息

Ubuntu查看crontab运行日志

解决方法
删除当前主机用户的.ssh/hosts文件即可


Crontab运行php脚本:http://www.linuxdiyf.com/linux/5453.html

Linux定时任务(crontab)实例:http://www.linuxdiyf.com/linux/13202.html

Linux中crond服务与crontab用法:http://www.linuxdiyf.com/linux/11240.html

Linux crontab命令详细用法及示例:http://www.linuxdiyf.com/linux/9084.html

Linux系统下的定时任务Crontab:http://www.linuxdiyf.com/linux/8249.html