网站状态异常时自动重启php-fpm的shell脚本
#!/bin/bash
resp=$(curl -Is http://jsonaz.com/|grep "502 Bad Gateway")
if [ "$resp" = "" ]
then
echo "good"
fi
resp=$(curl -Is http://jsonaz.com/|grep "502 Bad Gateway")
if [ "$resp" = "" ]
then
echo "good"
else
$(sudo kill -USR2 `cat /usr/local/php/var/run/php-fpm.pid`)fi
声明:该文观点仅代表作者本人,牛骨文系教育信息发布平台,牛骨文仅提供信息存储空间服务。