centos下停止php-fpm的方法是,执行停止命令【systemctl stop php-fpm】即可。如果我们要启动php-fpm,则执行【systemctl start php-fpm】命令。
本文操作环境:centos 7系统、php 7.3、thinkpad t480电脑。
centos系统下php-fpm的启动/重启/停止:
启动php-fpm命令
启动命令:
systemctl start php-fpm
重启php-fpm命令
重启命令:
systemctl restart php-fpm
停止php-fpm命令
停止命令:
systemctl stop php-fpm
相关视频教程:php视频教程
以上是centos下怎么停止php-fpm的详细内容。更多信息请关注PHP中文网其他相关文章!