定位 发表于 2016-12-9 22:36:59

Nginx 502 Bad Gateway 自动重启脚本

需要确保系统已安装curl,centos可以执行:yum install curl,debian/ubuntu可以执行:apt-get install curl

用winscp或vi在/root目录下创建502.sh 内容如下:

#!/bin/bash
# author: 定位
# website: https://bbs.cnblackhat.com

CheckURL="https://bbs.cnblackhat.com"

STATUS_CODE=`curl -o /dev/null -m 10 --connect-timeout 10 -s -w %{http_code} $CheckURL`
#echo "$CheckURL Status Code:\t$STATUS_CODE"
if [ "$STATUS_CODE" = "502" ]; then
        /etc/init.d/php-fpm restart
fi

chmod +x /root/502.sh
用crontab 一分钟执行一次。上面的https://bbs.cnblackhat.com改成你的地址,如果该页面是静态,需换成以php的页面地址。


其他的重启脚本,下面这个如果php函数里禁用了shell_exec 将无法使用。

#!/usr/bin/php

<?
$url = 'https://bbs.cnblackhat.com';
$cmd = '/etc/init.d/php-fpm restart';

for($i = 0; $i < 5; $i ++){
$exec = "curl --connect-timeout 3 -I $url 2>/dev/null";
$res = shell_exec($exec);

if(stripos($res,'502 Bad Gateway') !== false){
shell_exec($cmd);
exit();
}
}
?>

用crontab 一分钟执行一次。 url和cmd根据自己的改。

原理就是用curl获取HTTP头,发现502状态码就执行重启php-fpm的命令。
页: [1]
查看完整版本: Nginx 502 Bad Gateway 自动重启脚本