cron是linux的后台程序用来执行提前计划好的命令。什么意思呢?
就是你提前写好一些脚本,放在特定的目录,cron就会按照你设置的时间来定期执行。举一个简单的应用场景,我自己启动一个程序,需要每1分钟,检查程序是否存在,不存在则拉起这个程序。就可以使用cron来完成。
上面说了cron是执行各种定时任务的,但是你如何把你的任务传递给cron呢?就需要使用crontable命令了。crontable用来添加、删除、修改定时任务的。
[KentZhang@LOCAL-192-168-97-2]$ sudo crontab -u KentZhang -e ## 打开文件
* * * * * touch /home/KentZhang/log.txt ## 添加一行内容
然后保存退出,这个任务就生效了,表示每分钟会执行touch一次,修改log.txt文件的时间戳,这就是一个简单的定时任务。
* * * * * /bin/bash /home/KentZhang/myjob.sh > /dev/null 2>&1 &
表示每分钟执行myjob.sh这个脚本一次。
当使用crontab打开的用户的定时任务表后,一个文件是可以写入多个定时任务的。
* * * * * touch /home/KentZhang/log.txt ## 添加一行内容
* * * * * /bin/bash /home/KentZhang/myjob.sh > /dev/null 2>&1 &
上面的案例都是每分钟执行一次,其实还可以设置其他多种、复杂的时间格式。
.---------------- minute (0 - 59)
| .-------------- hour (0 - 23)
| | .------------ day of month (1 - 31)
| | | .---------- month (1 - 12) OR jan,feb,mar ...
| | | | .-------- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue ...
| | | | |
* * * * * command to be executed
分、时、天、月、周
* * * * * myCommand
3,15 * * * * myCommand
3,15 8-11 * * * myCommand
3,15 8-11 */2 * * myCommand
3,15 8-11 * * 1 myCommand
30 21 * * * /etc/init.d/smb restart
45 4 1,10,22 * * /etc/init.d/smb restart
10 1 * * 6,0 /etc/init.d/smb restart
0,30 18-23 * * * /etc/init.d/smb restart
0 23 * * 6 /etc/init.d/smb restart
* */1 * * * /etc/init.d/smb restart
* 23-7/1 * * * /etc/init.d/smb restart
crontab -u KentZhang -e
这个编辑appuser的定时任务,相当于打开 /var/spool/cron/KentZhang文件,因此可以不使用crontab命令,直接打开这个文件进行修改,保存后,依然会生效。
这种方式之所以可行,是因为corn会监控任务表文件的变化,一旦任务表有变化,会重新加载这个修改的任务表。