Crontab定时任务设置

1
2
3
4
5
6
7
8
9
10
11
12
13
[root@localhost ~]# /sbin/service crond start
正在启动 crond: [确定]
[root@localhost ~]# crontab -l
#每五分钟更新一次
*/5 * * * * curl "www.xxxx.com?update_cache.html"
*/5 * * * * curl "www.xxxx.com?update_cache.html"
*/5 * * * * curl "www.xxxx.com?update_cache.html"
#每天晚上23:59更新一次
59 23 * * * curl "www.xxxx.com?update_cache.html"
#每年1月1号23:59分执行
59 23 1 1 * curl "www.xxxx.com?update_cache.html"
查看定时器执行状态
tail -f /var/log/cron