利用Linux自带的crontab命令执行定时任务(Ubuntu环境)
cd /opt vim reboot.txt
在reboot.txt文件中输入下面的内容后保存
30 0 * * * /etc/init.d/apache2 restart
把新建的文件加入到cron服务中
crontab reboot.txt
查看crontab
crontab -l
重启crontab服务
service cron restart
补充说明
时程表的基本格式 :
* * * * * program
分 时 日 月 周 命令
第1列表示分钟1~59 每分钟用*或者 */1表示
第2列表示小时1~23(0表示0点)
第3列表示日期1~31
第4列表示月份1~12
第5列标识号星期0~6(0表示星期天)
第6列要运行的命令
当第1列 为 * 时表示每分钟都要执行 program,第2列为 * 时表示每小时都要执行程式,其余类推
当第1列为 a-b 时表示从第 a 分钟到第 b 分钟这段时间内要执行,第2列为 a-b 时表示从第 a 到第 b 小时都要执行,其余类推
当第1列为 */n 时表示每 n 分钟个时间间隔执行一次,第2列 为 */n 表示每 n 小时个时间间隔执行一次,其余类推
当第1列为 a, b, c,... 时表示第 a, b, c,... 分钟要执行,第2列 为 a, b, c,... 时表示第 a, b, c...个小时要执行,其余类推
例子:
30 21 * * * /etc/init.d/apache2 restart #上面的例子表示每晚的21:30重启apache 45 4 1,10,22 * * /etc/init.d/apache2 restart#上面的例子表示每月1、10、22日的4 : 45重启apache
10 1 * * 6,0/etc/init.d/apache2 restart
#上面的例子表示每周六、周日的1 : 10重启apache
0,30 18-23 * * * /etc/init.d/apache2 restart#上面的例子表示在每天18 : 00至23 : 00之间每隔30分钟重启apache
0 23 * * 6 /etc/init.d/apache2 restart#上面的例子表示每星期六的11 : 00 pm重启apache
* */1 * * * /etc/init.d/apache2 restart#每一小时重启apache
* 23-7/1 * * */etc/init.d/apache2 restart#晚上11点到早上7点之间,每隔一小时重启apache
0 11 4 * mon-wed /etc/init.d/apache2 restart#每月的4号与每周一到周三的11点重启apache
0 4 1 jan * /etc/init.d/apache2 restart#一月一号的4点重启apache