經過編譯安裝以及解決問題,nginx 已經執行正常,但是此時 nginx 並沒有新增進系統服務。接下來會將 nginx 新增進系統服務並且設定開機啟動。
首先檢視 nginx 的服務狀態,輸入systemctl status nginx
,結果如下
在/usr/lib/systemd/system
目錄中新增nginx.service
,根據實際情況進行修改,詳細解析可檢視下方參考資料中的文章。內容如下
[unit]
description=nginx - high performance web server
documentation=
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 的安裝。
CentOS 7 將 Nginx 新增系統服務
經過編譯安裝以及解決問題,nginx 已經執行正常,但是此時 nginx 並沒有新增進系統服務。接下來會將 nginx 新增進系統服務並且設定開機啟動。首先檢視 nginx 的服務狀態,輸入systemctl status nginx,結果如下 在 usr lib systemd system目錄中...
CentOS 7 將 Nginx 新增系統服務
經過編譯安裝以及解決問題,nginx 已經執行正常,但是此時 nginx 並沒有新增進系統服務。接下來會將 nginx 新增進系統服務並且設定開機啟動。首先檢視 nginx 的服務狀態,輸入systemctl status nginx,結果如下 在 usr lib systemd system目錄中...
CentOS 7 新增使用者
首先使用命令 ll usr sbin grep user 找到所有的有關user的命令,adduser guest 建立使用者 passwd guest 修改新增的使用者的密碼 之後系統會提示 更改使用者的密碼。輸入新的密碼之後,確認重新輸入的密碼,之後,系統提示passwd所有的身份驗證令牌已經成...