CentOS6的crontab启动项详解
先查看状态是否安装crontab
service crond status
安装crontab
yum install vixie-cron
yum install crontabs
chkconfig crond on
chkconfig --list crond
service crond start #启动服务
service crond stop #关闭服务
service crond restart #重启服务
service crond reload #重新载入配置
cat /var/log/cron #查看日志
#每晚的21:30 重启apache
30 21 * * * /usr/local/etc/rc.d/lighttpd restart
#每月1、10、22日的4 : 45重启apache
45 4 1,10,22 * * /usr/local/etc/rc.d/lighttpd restart
#每周六、周日的1 : 10重启apache
10 1 * * 6,0 /usr/local/etc/rc.d/lighttpd restart
#每天18 : 00至23 : 00之间每隔30分钟重启apache
0,30 18-23 * * * /usr/local/etc/rc.d/lighttpd restart
#每星期六的11 : 00 pm重启apache
0 23 * * 6 /usr/local/etc/rc.d/lighttpd restart
#晚上11点到早上7点之间,每隔一小时重启apache
* 23-7/1 * * * /usr/local/etc/rc.d/lighttpd restart
#每一小时重启apache
* */1 * * * /usr/local/etc/rc.d/lighttpd restart
#每月的4号与每周一到周三的11点重启apache
0 11 4 * mon-wed /usr/local/etc/rc.d/lighttpd restart
#一月一号的4点重启apache
0 4 1 jan * /usr/local/etc/rc.d/lighttpd restart
#每半小时同步一下时间
*/30 * * * * /usr/sbin/ntpdate 210.72.145.44
在CRONTAB中执行变量时
`date +%Y%m%d`
要将%转义成\%
`date +\%Y\%m\%d`
定时任务日志报错信息为 MAIL (mailed 68 bytes of output but got status 0x004b#012)解决方法
nano /etc/postfix/main.cf
inet_interfaces = localhost #注释这行
inet_interfaces = all #开启这行
运行启动
service postfix start
转载请注明:RAIN MAN » CentOS6的crontab启动项详解
还没有人抢沙发呢~