Cron 每天執行兩次
在我的 CentOS 7 伺服器上,由應該可以正常執行的夜間備份腳本生成的錯誤導致我檢查我的 cron 活動。我發現它
cron.daily
執行了兩次 - 這是我刪除備份腳本後的相關部分,/var/log/cron
看看它是否以某種方式導致了問題:Oct 10 02:28:01 mail CROND[1750]: (root) CMD (run-parts /etc/cron.hourly) Oct 10 02:28:01 mail run-parts(/etc/cron.hourly)[1750]: starting 0anacron Oct 10 02:28:01 mail anacron[1759]: Anacron started on 2017-10-10 Oct 10 02:28:01 mail run-parts(/etc/cron.hourly)[1761]: finished 0anacron Oct 10 02:28:01 mail anacron[1759]: Normal exit (0 jobs run) Oct 10 02:30:01 mail CROND[1766]: (root) CMD (/usr/lib64/sa/sa1 1 1) Oct 10 02:40:01 mail CROND[1847]: (root) CMD (/usr/lib64/sa/sa1 1 1) Oct 10 02:50:01 mail CROND[1936]: (root) CMD (/usr/lib64/sa/sa1 1 1) Oct 10 03:00:01 mail CROND[2032]: (root) CMD (/usr/lib64/sa/sa1 1 1) Oct 10 03:10:01 mail CROND[2148]: (root) CMD (/usr/lib64/sa/sa1 1 1) Oct 10 03:17:01 mail CROND[2223]: (root) CMD (run-parts /etc/cron.daily) Oct 10 03:17:01 mail run-parts(/etc/cron.daily)[2223]: starting kizunademo Oct 10 03:17:02 mail run-parts(/etc/cron.daily)[2259]: finished kizunademo Oct 10 03:17:02 mail run-parts(/etc/cron.daily)[2223]: starting logrotate Oct 10 03:17:02 mail run-parts(/etc/cron.daily)[2266]: finished logrotate Oct 10 03:17:02 mail run-parts(/etc/cron.daily)[2223]: starting man-db.cron Oct 10 03:17:02 mail run-parts(/etc/cron.daily)[2277]: finished man-db.cron Oct 10 03:20:01 mail CROND[2288]: (root) CMD (/usr/lib64/sa/sa1 1 1) Oct 10 03:28:01 mail CROND[2367]: (root) CMD (run-parts /etc/cron.hourly) Oct 10 03:28:01 mail run-parts(/etc/cron.hourly)[2367]: starting 0anacron Oct 10 03:28:01 mail anacron[2376]: Anacron started on 2017-10-10 Oct 10 03:28:01 mail run-parts(/etc/cron.hourly)[2378]: finished 0anacron Oct 10 03:28:01 mail anacron[2376]: Will run job `cron.daily' in 35 min. Oct 10 03:28:01 mail anacron[2376]: Jobs will be executed sequentially Oct 10 03:30:01 mail CROND[2381]: (root) CMD (/usr/lib64/sa/sa1 1 1) Oct 10 03:40:01 mail CROND[2462]: (root) CMD (/usr/lib64/sa/sa1 1 1) Oct 10 03:50:02 mail CROND[2547]: (root) CMD (/usr/lib64/sa/sa1 1 1) Oct 10 04:00:01 mail CROND[2670]: (root) CMD (/usr/lib64/sa/sa1 1 1) Oct 10 04:03:01 mail anacron[2376]: Job `cron.daily' started Oct 10 04:03:01 mail run-parts(/etc/cron.daily)[2685]: starting kizunademo Oct 10 04:03:02 mail run-parts(/etc/cron.daily)[2721]: finished kizunademo Oct 10 04:03:02 mail run-parts(/etc/cron.daily)[2685]: starting logrotate Oct 10 04:03:02 mail run-parts(/etc/cron.daily)[2728]: finished logrotate Oct 10 04:03:02 mail run-parts(/etc/cron.daily)[2685]: starting man-db.cron Oct 10 04:03:03 mail run-parts(/etc/cron.daily)[2739]: finished man-db.cron Oct 10 04:03:03 mail anacron[2376]: Job `cron.daily' terminated Oct 10 04:03:03 mail anacron[2376]: Normal exit (1 job run)
為什麼要
cron.daily
執行兩次?如您所見,日誌包含與第二次執行相關的一些條目,但在第一次執行時不存在:兩行宣布即將執行,另外兩行表示它以正常退出而終止。第一次執行只是簡單地執行腳本,沒有額外的宣傳。我認為這意味著什麼,但我不知道是什麼。我檢查了所有我能想到的東西的兩倍。我很確定我已經閱讀了有關該主題的所有類似主題,因此請在將其稱為重複問題之前與以下內容進行比較。基於為什麼 cron 執行兩次?我檢查了額外的程序 - 完整的輸出
ps aux | grep cron
如下,所以只有一個程序:root 9383 0.0 0.2 112672 2340 pts/0 S+ 15:18 0:00 grep --color=auto cron root 25624 0.0 0.0 126248 320 ? Ss Sep30 0:02 /usr/sbin/crond -n
基於執行兩次的 Cron 作業-我還檢查了Ubuntu 伺服器 12.04
crontab -l -u root
,它說no crontab for root
。這是我的 /etc/crontab:
SHELL=/bin/bash PATH=/sbin:/bin:/usr/sbin:/usr/bin MAILTO=my@email.com 28 * * * * root run-parts /etc/cron.hourly 17 3 * * * root run-parts /etc/cron.daily 44 2 * * 0 root run-parts /etc/cron.weekly 8 2 7 * * root run-parts /etc/cron.monthly
想法?
編輯(本次討論沉默 9 個月後):
今天來自 Marin Velikov 的評論讓我意識到有一個
anacrontab
文件(我知道這很愚蠢,但我什至沒有想到)。這是它的內容:SHELL=/bin/sh PATH=/sbin:/bin:/usr/sbin:/usr/bin MAILTO=root # the maximal random delay added to the base delay of the jobs RANDOM_DELAY=45 # the jobs will be started during the following hours only START_HOURS_RANGE=3-22 #period in days delay in minutes job-identifier command 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
所以這就是原因。*但是為什麼系統會被配置為同時執行呢?*我認為比我聰明的人會這樣設置它,所以在知道目的之前我會猶豫不決。如果我確實應該刪除其中一個
crontab
或中的條目anacrontab
,哪一個是最好的?Anacron 顯然是更複雜的工具,但清空一個crontab
. 我是不是太老派了?
為什麼 cron.daily 執行兩次?
crond
執行一次:Oct 10 03:17:01 mail CROND[2223]: (root) CMD (run-parts /etc/cron.daily)
anacron
執行一次:Oct 10 04:03:01 mail anacron[2376]: Job `cron.daily' started
crond
開始anacron
,這就是為什麼你沒有看到它的過程:Oct 10 03:28:01 mail CROND[2367]: (root) CMD (run-parts /etc/cron.hourly) Oct 10 03:28:01 mail run-parts(/etc/cron.hourly)[2367]: starting 0anacron Oct 10 03:28:01 mail anacron[2376]: Anacron started on 2017-10-10 Oct 10 03:28:01 mail run-parts(/etc/cron.hourly)[2378]: finished 0anacron Oct 10 03:28:01 mail anacron[2376]: Will run job `cron.daily' in 35 min. Oct 10 03:28:01 mail anacron[2376]: Jobs will be executed sequentially