/www/server/php/版本/sbin/php-fpm
关闭
kill -INT `cat /www/server/php/版本/var/run/php-fpm.pid`
重启
kill -USR2 `cat /www/server/php/版本/var/run/php-fpm.pid`
想让网站php挂掉的时候自动重启,网站php挂掉会提示502,通过计划任务每分钟检测网站状态返回值是否等于502,如果等于502则启动php-fpm服务
宝塔添加计划任务
if ((`curl -o /dev/null -s -w %{http_code} www.xxxxxx.com` == 502)) ;then /www/server/php/版本/sbin/php-fpm ; fi