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
启动PHP服务
systemctl start php-fpm.service
设置开机启动php
systemctl enable php-fpm.service
学之如大海汪洋,薄积厚发,后发制人,大学之道也。