天天看点

Linux服务器管理: 系统的定时任务crond

cornd 是定时任务的守护进程  这个服务系统是默认启动的

[root@localhost/]#/etc/init.d/crond strat|restart|stop

[root@localhost/]#chkconfig crond on

命令介绍:

[root@localhost/]#crontab [选项]  (这个命令每一分钟读取一次里面的配置,所以我们的配置不能精确到秒)

选项: -e: 编辑crontab定时任务 -l: 查询crontab任务  -r: 删除当前用户所有的crontab任务

我们编辑定时命令crontab -e     //会进入一个默认的文件与vim相同  我们在内写入标准命令即可与/etc/rc.local一样 但唯一不同的是前面的5个时间设置 * * * * * commend   

说明: 1. 分钟(1-59)  2. 时(1-23) 3.天(1-31) 4.月(1-12) 5.星期几(1-7其中0和7都代表星期日)

Linux服务器管理: 系统的定时任务crond

日期的表示:

Linux服务器管理: 系统的定时任务crond