如果PHP宕机了,网站也无法运行了,可以使用脚本监控,然后自动重启。
脚本代码:
pgrep -x php-fpm &> /dev/null
if [ $? -ne 0 ];then
systemctl restart php-fpm
fi
脚本解释以及如何使用等,参考Mysql宕机自动重启的教程。
关键字:PHP宕机,PHP Crash,PHP-FPM宕机
如果PHP宕机了,网站也无法运行了,可以使用脚本监控,然后自动重启。
脚本代码:
pgrep -x php-fpm &> /dev/null
if [ $? -ne 0 ];then
systemctl restart php-fpm
fi
脚本解释以及如何使用等,参考Mysql宕机自动重启的教程。
关键字:PHP宕机,PHP Crash,PHP-FPM宕机
© 2024 ensky的跨境笔记 — Powered by WordPress
Theme by Anders Noren — Up ↑
Leave a Reply