CentOS6.4定时任务
添加定时任务
crontab -e
任务调度设置文件的写法
格式:
Minute Hour Day Month Dayofweek command
例如:
指定每小时的第5分钟执行一次ls命令
5 * * * * ls
每5分钟执行一次ls命令
*/5 * * * * ls
每天8-11点的第25分钟执行ls命令
25 8-11 * * * ls
编辑完成后:wq保存
查看定时任务
crontab -l
使root用户的crontab生效
crontab -u root /var/spool/cron/root
添加开机启动
chkconfig crond on
重启crontab服务
service crond restart