Linux
cron.daily
什麼時候執行?
cron.daily
(and.weekly
and )中的條目何時.hourly
執行,是否可配置?我還沒有找到一個明確的答案,我希望有一個。
我正在執行 RHEL5 和 CentOS 4,但對於其他發行版/平台也會很棒。
對於您提到的發行版:
在 CentOS 5.4 上(對於 RHEL5 應該相同)
grep run-parts /etc/crontab 01 * * * * root run-parts /etc/cron.hourly 02 4 * * * root run-parts /etc/cron.daily 22 4 * * 0 root run-parts /etc/cron.weekly 42 4 1 * * root run-parts /etc/cron.monthly
所以 cron.daily 在凌晨 04:02 執行。
在 CentOS 4.8 上相同
從手冊頁:
Cron also searches for /etc/anacrontab
/etc/anacrontab
在我的系統(Fedora 12)中:1 5 cron.daily nice run-parts /etc/cron.daily 7 25 cron.weekly nice run-parts /etc/cron.weekly @monthly 45 cron.monthly nice run-parts /etc/cron.monthly
也可以看看
man anacrontab