查看服務
先查看nginx 的服務狀態,輸入 systemctl status nginx
,結果如下
沒有找到相關的服務,下一步就是新增系統服務。
新增系統服務
在 /usr/lib/systemd/system
目錄中新增 nginx.service
#,根據實際情況進行修改,詳細解析可查看下方參考資料中的文章。內容如下
[unit] description=nginx - high performance web server documentation=http://nginx.org/en/docs/ after=network.target remote-fs.target nss-lookup.target [service] type=forking pidfile=/usr/local/nginx/logs/nginx.pid execstartpre=/usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/nginx.conf execstart=/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf execreload=/bin/kill -s hup $mainpid execstop=/bin/kill -s quit $mainpid privatetmp=true [install] wantedby=multi-user.target
新增完成後再來看下
#設定開機自動啟動
#先測試一下,重新啟動然後來查看nginx 服務
確實沒有啟動。輸入 systemctl start nginx
啟動
可以使用 systemctl
啟動,說明先前新增的 nginx.service
沒有問題。然後輸入 systemctl enable nginx
設定開機啟動
#最後重新啟動檢查下是否設定成功
#################################################### #沒有問題,到此關於nginx 的編譯安裝完成,接下來是php 的安裝。 ###以上是CentOS7怎麼將Nginx加入系統服務的詳細內容。更多資訊請關注PHP中文網其他相關文章!