首页 > 代码库 > 一个简单的监控网站是否正常并自动重启服务的shell脚本

一个简单的监控网站是否正常并自动重启服务的shell脚本

#!/bin/sh
if [ -z "`curl --connect-timeout 15 --max-time 20 --head --silent http://localhost/index.php|head -n 1|grep ‘200‘`" ];then
    echo -e "$(date +%Y-%m-%d)\n" 
    killall nginx
    killall php-fpm
    /usr/local/nginx/sbin/nginx -c conf/nginx.conf
    /usr/local/php/sbin/php-fpm
    service mysqld restart
fi


脚本通过计划任务每隔3分钟执行一次,并记录到日志。

*/3 * * * * /dragon/bin/jiankong.sh > /dragon/bin/jiankong.log 2>&1