Q: 为什么我添加到/etc/cron.中的定期任务不能按时
执行?
A: 在SLES8中缺省不运行/etc/cron.下的脚本,具体
参见/etc/crontab文件:
59 * * * * root rm -f /var/spool/cron/lastrun/cron.hourly
14 4 * * * root rm -f /var/spool/cron/lastrun/cron.daily
29 4 * * 6 root rm -f /var/spool/cron/lastrun/cron.weekly
44 4 1 * * root rm -f /var/spool/cron/lastrun/cron.monthly
如果希望能定期运行上述目录中的任务,需要将"rm -f /var/spool/cron/lastrun/cron.xxxx"修改为"/usr/lib/cron/run-crons /var/spool/cron/lastrun/cron.xxxx"
然后重启cron服务
# /etc/rc.d/cron restart