system级别配置php-开机自启方式

vi /etc/systemd/system/php-fpm.service

[Unit]
Description=The PHP FastCGI Process Manager
After=syslog.target network.target

[Service]
Type=simple
PIDFile=/run/php-fpm.pid
ExecStart=/usr/local/php/sbin/php-fpm --nodaemonize --fpm-config /usr/local/php/etc/php-fpm.conf
ExecReload=/bin/kill -USR2 $MAINPID
ExecStop=/bin/kill -SIGINT $MAINPID

[Install]
WantedBy=multi-user.target

启动

systemctl start php-fpm.service

开机启动

systemctl enable php-fpm.service
system级别配置php-开机自启方式
system级别配置php-开机自启方式

system级别配置php-开机自启方式

上一篇:JS中filter()方法的使用


下一篇:CSS+HTML+flexible.js+rem实现屏幕缩放适配概念原理解释