Home > Article > Backend Development > How to set up fpm to start in php
Method: First execute the "chmod a -fpm on" command to set auto-start at boot.
The operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer
Add Execution permission
chmod a+x /etc/init.d/php-fpm
Join service
chkconfig --add php-fpm
Start at boot
chkconfig php-fpm on
View service list:
chkconfig --list
The above is the detailed content of How to set up fpm to start in php. For more information, please follow other related articles on the PHP Chinese website!