快捷搜索:  

Nginx 遇到502 Bad Gateway 自动重启的脚本代码

原理就是用curl获取HTTP头,发现502状态码就执行重启php-fpm的命令。
复制代码 代码如下:
#!/usr/bin/php
<!--$url = 'http://www.jb51.net';
$cmd = '/usr/local/php/sbin/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,请自行Google搜索或参考下面的文章
http://www.jb51.net/LINUXjishu/19905.html
http://www.jb51.net/LINUXjishu/17374.html
顶(0)
踩(0)

您可能还会对下面的文章感兴趣:

最新评论