码迷,mamicode.com
首页 > 系统相关 > 详细

linux apache 自动监护脚本

时间:2014-07-20 23:13:03      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:http   art   re   c   linux   ar   

 1 首先安装curl

yum install curl

2 编写shell

vi restart_apache.sh

写入一下内容

#!/bin/bash
URL="http://127.0.0.1/"
curlit()
{
curl --connect-timeout 35 --max-time 40 --head --silent "$URL" | grep ‘200‘
}

doit()
{
if ! curlit; then
sleep 20
top -n 1 -b >> /var/log/restart_log/apache.log
/etc/init.d/httpd stop
sleep 2
/etc/init.d/httpd start > /dev/null
echo $(date) "Apache Restart" >> /var/log/restart_log/re_apache.log
sleep 30
if ! curlit; then
echo $(date) "Failed! Now Reboot Computer!" >> /var/log/restart_log/rebot_apache.log
reboot
fi
sleep 180
fi
}

sleep 300
while true; do
doit > /dev/null
sleep 10
done

3 把restart_apache.sh 加入到定时计划任务

crontab -e

写入以下内容 

  */1 * * * * /home/restart_apache.sh  //一分钟执行一次

crontab -l 查看 是否加入成功

4 chmod +x  restart_apache.sh 表示可以执行

5 测试 把apache停止  然后测试 过一会看看apache是否已经自动启动

linux apache 自动监护脚本,布布扣,bubuko.com

linux apache 自动监护脚本

标签:http   art   re   c   linux   ar   

原文地址:http://www.cnblogs.com/jackspider/p/3857382.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!