centos下怎么停止php-fpm
程序员文章站
2022-04-05 10:15:12
...
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如何去掉字符串最后一个逗号