一个懒散的博客

502 Bad Gateway自动重启脚本

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

新建php.sh文件,存放于/root或其它目录:

#!/bin/bash
MY_URL="https://toot.su/"
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
赞(0)
未经允许不得转载:嘟嘟 » 502 Bad Gateway自动重启脚本
分享到: 更多 (0)

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址