码迷,mamicode.com
首页 > 其他好文 > 详细

502 Bad Gateway 自动重启脚本

时间:2015-09-21 01:46:20      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:gateway   监控   


一个简单的脚本,用来监控502的,如果遇到502,自动重启PHP进程。适用于LNMP环境。

以下文件,存放于 /root 或其它目录:


#!/bin/bash

MY_URL="http://www.tarena.com.cn/"

RESULT=`curl -I $MY_URL|grep "HTTP/1.1 502"`

if [ -n "$RESULT" ]; then

/etc/init.d/php-fpm restart

fi



给予可执行权限:


chmod +x /root/php.sh


通过 crontab 设置自动运行:


crontab -e



* * * * * /root/php.sh


本文出自 “目标:印度” 博客,转载请与作者联系!

502 Bad Gateway 自动重启脚本

标签:gateway   监控   

原文地址:http://shunzi115.blog.51cto.com/5184443/1696551

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