资源描述:
《linux使用crontab命令定时重启服务器》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、服务器不重启的情况下定时自动重启apache及mysql服务,其实也大同小异。具体步骤如下:一、每天的12点及16点重启apache及mysql服务[root@www bin]# cd /opt/[root@www opt]# vim reboot.txt在reboot.txt.txt文件中输入下面的内容后保存0 12 * * * service httpd restart0 12 * * * service mysqld restart0 16 * * * service httpd restar
2、t0 16 * * * service mysqld restart二、把新建的文件加入到cron服务中[root@www opt]# crontab reboot.txt[root@www opt]# crontab -l0 12 * * * service httpd restart0 12 * * * service mysqld restart0 16 * * * service httpd restart0 16 * * * service mysqld restart三、重启cron服务
3、[root@www opt]# /sbin/service crond restart服务器不重启的情况下定时自动重启apache及mysql服务,其实也大同小异。具体步骤如下:一、每天的12点及16点重启apache及mysql服务[root@www bin]# cd /opt/[root@www opt]# vim reboot.txt在reboot.txt.txt文件中输入下面的内容后保存0 12 * * * service httpd restart0 12 * * * service my
4、sqld restart0 16 * * * service httpd restart0 16 * * * service mysqld restart二、把新建的文件加入到cron服务中[root@www opt]# crontab reboot.txt[root@www opt]# crontab -l0 12 * * * service httpd restart0 12 * * * service mysqld restart0 16 * * * service httpd restart
5、0 16 * * * service mysqld restart三、重启cron服务[root@www opt]# /sbin/service crond restart=======================================补充说明:cron是一个linux下的定时执行工具,可以在无需人工干预的情况下运行作业。由于Cron 是Linux的内置服务,但它不自动起来,可以用以下的方法启动、关闭这个服务:/sbin/service crond start //启动服务/sbin/
6、service crond stop //关闭服务/sbin/service crond restart //重启服务/sbin/service crond reload //重新载入配置时程表的基本格式 :* * * * * program分 时 日 月 周 命令第1列表示分钟1~59 每分钟用*或者 */1表示第2列表示小时1~23(0表示0点)第3列表示日期1~31第4列表示月份1~12第5列标识号星期0~6(0表示星期天)第6列要运行的命令当第1列 为 * 时
7、表示每分钟都要执行 program,第2列为 * 时表示每小时都要执行程式,其余类推当第1列为 a-b 时表示从第 a 分钟到第 b 分钟这段时间内要执行,第2列为 a-b 时表示从第 a 到第 b 小时都要执行,其余类推当第1列为 */n 时表示每 n 分钟个时间间隔执行一次,第2列 为 */n 表示每 n 小时个时间间隔执行一次,其余类推当第1列为 a, b, c,... 时表示第 a, b, c,... 分钟要执行,第2列 为 a, b, c,... 时表示第 a, b, c...个小时要执行
8、,其余类推crontab文件的一些例子:30 21 * * * /usr/local/etc/rc.d/lighttpd restart上面的例子表示每晚的21:30重启lighttpd 。45 4 1,10,22 * * /usr/local/etc/rc.d/lighttpd restart上面的例子表示每月1、10、22日的4 : 45重启lighttpd 。10 1 * * 6,0 /usr/local/etc/rc.d/lighttpd restart上面的