用crontab部署定時任務

1.(centos)安裝crontab服務nginx

yum install crontabs

 

2.啓動、中止、重啓、重載服務apache

/sbin/service crond start
/sbin/service crond stop
/sbin/service crond restart
/sbin/service crond reload

 

3.服務管理centos

查看crontab服務狀態:spa

service crond status

手動啓動crontab服務:rest

service crond start

編輯crontab定時任務: (若是想取消定時任務,能夠在語句前面加上#,或者直接刪除該語句)code

 crontab -e

查看crontab定時任務: blog

crontab -l

查看crontab服務是否已設置爲開機啓動,執行命令:crontab

ntsysv

  

4.添加任務class

基本格式 :定時任務

分 時 日 月 周 命令
第1列表示分鐘1~59 每分鐘用*或者 */1表示
第2列表示小時1~23(0表示0點)
第3列表示日期1~31
第4列表示月份1~12
第5列標識號星期0~6(0表示星期天)
第6列要運行的命令
30 21 * * * /usr/local/etc/rc.d/lighttpd restart
上面的例子表示每晚的21:30重啓apache

45 4 1,10,22 * * /usr/local/etc/rc.d/lighttpd restart
上面的例子表示每個月一、10、22日的4 : 45重啓apache

10 1 * * 6,0 /usr/local/etc/rc.d/lighttpd restart
上面的例子表示每週6、週日的1 : 10重啓apache

0,30 18-23 * * * /usr/local/etc/rc.d/lighttpd restart
上面的例子表示在天天18 : 00至23 : 00之間每隔30分鐘重啓apache

0 23 * * 6 /usr/local/etc/rc.d/lighttpd restart
上面的例子表示每星期六的11 : 00 pm重啓apache。

* */1 * * * /usr/local/etc/rc.d/lighttpd restart
每一小時重啓apache

* 23-7/1 * * * /usr/local/etc/rc.d/lighttpd restart
晚上11點到早上7點之間,每隔一小時重啓apache

0 11 4 * mon-wed /usr/local/etc/rc.d/lighttpd restart
每個月的4號與每週一到週三的11點重啓apache

0 4 1 jan * /usr/local/etc/rc.d/lighttpd restart
一月一號的4點重啓apache

 實際應用:

00 23 * * * systemctl stop nginx.service
00 06 * * * systemctl start nginx.service
相關文章
相關標籤/搜索