发布网友 发布时间:2022-04-24 04:35
共1个回答
热心网友 时间:2023-10-28 14:01
把这个脚本命名为httpdemon.sh,放在home目录下
#!/bin/sh
HOLD=/tmp/httpd0.$$
while [ 1 ]
do
ps -A | grep httpd | grep -v grep | awk '{print $2}' > $HOLD
if [ ! -s $HOLD ]; then
echo http service shutdown on `date` >> /var/log/htmon.log
fi
service httpd restart
ps -A | grep httpd | grep -v grep | awk '{print $2}' > $HOLD
if [ ! -s $HOLD ]; then
/bin/reboot
else
exit
fi
done
周一至周五每隔15分钟执行一次监测就写在crontab里面
0,15,30,45 * * * 1-5 /home/httpdemon.sh
没有具体测试过,如果不正确自己在调试下
热心网友 时间:2023-10-28 14:01
把这个脚本命名为httpdemon.sh,放在home目录下
#!/bin/sh
HOLD=/tmp/httpd0.$$
while [ 1 ]
do
ps -A | grep httpd | grep -v grep | awk '{print $2}' > $HOLD
if [ ! -s $HOLD ]; then
echo http service shutdown on `date` >> /var/log/htmon.log
fi
service httpd restart
ps -A | grep httpd | grep -v grep | awk '{print $2}' > $HOLD
if [ ! -s $HOLD ]; then
/bin/reboot
else
exit
fi
done
周一至周五每隔15分钟执行一次监测就写在crontab里面
0,15,30,45 * * * 1-5 /home/httpdemon.sh
没有具体测试过,如果不正确自己在调试下
热心网友 时间:2023-10-28 14:01
把这个脚本命名为httpdemon.sh,放在home目录下
#!/bin/sh
HOLD=/tmp/httpd0.$$
while [ 1 ]
do
ps -A | grep httpd | grep -v grep | awk '{print $2}' > $HOLD
if [ ! -s $HOLD ]; then
echo http service shutdown on `date` >> /var/log/htmon.log
fi
service httpd restart
ps -A | grep httpd | grep -v grep | awk '{print $2}' > $HOLD
if [ ! -s $HOLD ]; then
/bin/reboot
else
exit
fi
done
周一至周五每隔15分钟执行一次监测就写在crontab里面
0,15,30,45 * * * 1-5 /home/httpdemon.sh
没有具体测试过,如果不正确自己在调试下