1. 程式人生 > >centos7.x設定php7自啟動

centos7.x設定php7自啟動

編譯安裝好php之後

whereis php

顯示路徑為php: /usr/local/php

#拷貝配置檔案
cp /php-7.1.14/php.ini-production /usr/local/php/etc/php.ini
cd /usr/local/php/etc
cp php-fpm.conf.default php-fpm.conf
cd php-fpm.d
cp www.conf.default www.conf
#新增服務檔案
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 enable php-fpm.service
#啟動服務
systemctl start php-fpm.service #檢視狀態 systemctl status php-fpm.service