我有一个脚本可以每天随时运行。所以/etc/cron.daily
似乎是一个简单的解决方案。
但是现在我遇到了问题,cronjob 不会运行该脚本。似乎 cronjob 不会运行任何日常工作。
所以我试着把它放到 cron.hourly 中,一切正常。但我不想每小时运行一次备份脚本。
/etc/init.d/cron start|stop
工作没有错误。
/etc/crontab
看起来像默认值:
m h dom mon dow user command
17 * * * * root cd / && run-parts --report /etc/cron.hourly
25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
由于它不会运行,我尝试安装 anacron 但没有任何更改。
为什么它运行每小时脚本而不是每日脚本?
非常感谢大家!