欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

centos下怎么停止php-fpm

程序员文章站 2022-04-05 10:15:12
...

centos下停止php-fpm的方法是,执行停止命令【systemctl stop php-fpm】即可。如果我们要启动php-fpm,则执行【systemctl start php-fpm】命令。

centos下怎么停止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的详细内容,更多请关注其它相关文章!

相关标签: centos php-fpm