導語
在安溪等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務理念,為客戶提供網(wǎng)站制作、成都網(wǎng)站制作 網(wǎng)站設計制作按需網(wǎng)站制作,公司網(wǎng)站建設,企業(yè)網(wǎng)站建設,品牌網(wǎng)站設計,營銷型網(wǎng)站建設,外貿(mào)網(wǎng)站制作,安溪網(wǎng)站建設費用合理。
經(jīng)過編譯安裝以及解決問題,Nginx 已經(jīng)運行正常,但是此時 Nginx 并沒有添加進系統(tǒng)服務。接下來會將 Nginx 添加進系統(tǒng)服務并且設置開機啟動。
查看服務
首先查看 Nginx 的服務狀態(tài),輸入 systemctl status nginx
,結(jié)果如下
沒有找到相關(guān)的服務,下一步就是添加系統(tǒng)服務。
添加系統(tǒng)服務
在 /usr/lib/systemd/system
目錄中添加 nginx.service
,根據(jù)實際情況進行修改,詳細解析可查看下方參考資料中的文章。內(nèi)容如下
[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
設置開機啟動
最后重啟檢查下是否設置成功
沒有問題,到此關(guān)于 Nginx 的編譯安裝完成,接下來是 PHP 的安裝。
參考資料:CentOS 7 systemd添加自定義系統(tǒng)服務、