Home > Article > Backend Development > How to stop php-fpm under centos
The way to stop php-fpm under centos is to execute the stop command [systemctl stop php-fpm]. If we want to start php-fpm, execute the [systemctl start php-fpm] command.
The operating environment of this article: centos 7 system, php 7.3, thinkpad t480 computer.
Start/restart/stop php-fpm under centos system:
Start php-fpm command
Start command:
systemctl start php-fpm
Restart php-fpm Command
Restart command:
systemctl restart php-fpm
Stop php-fpm command
Stop command:
systemctl stop php-fpm
Related video tutorial:php video tutorial
The above is the detailed content of How to stop php-fpm under centos. For more information, please follow other related articles on the PHP Chinese website!