updata php8-fmd

This commit is contained in:
JackLee_CN 2022-10-25 20:56:52 +08:00
parent c1a271ce9d
commit 12dd0e6435

View File

@ -612,14 +612,14 @@ onmp_restart()
/opt/etc/init.d/S70mysqld stop > /dev/null 2>&1
/opt/etc/init.d/S79php8-fpm stop > /dev/null 2>&1
/opt/etc/init.d/S80nginx stop > /dev/null 2>&1
killall -9 nginx mysqld php-fpm > /dev/null 2>&1
killall -9 nginx mysqld php8-fpm > /dev/null 2>&1
sleep 3
/opt/etc/init.d/S70mysqld start > /dev/null 2>&1
/opt/etc/init.d/S79php8-fpm start > /dev/null 2>&1
/opt/etc/init.d/S80nginx start > /dev/null 2>&1
sleep 3
num=0
for PROC in 'nginx' 'php-fpm' 'mysqld'; do
for PROC in 'nginx' 'php8-fpm' 'mysqld'; do
if [ -n "`pidof $PROC`" ]; then
echo $PROC "启动成功";
else