首頁 > 運維 > Nginx > 主體

設定nginx開機自啟動的方法

王林
發布: 2020-11-09 15:49:05
轉載
4316 人瀏覽過

設定nginx開機自啟動的方法

特定步驟如下:

新nginx.service檔案 

vim /lib/systemd/system/nginx.service
登入後複製

 內容:

[Unit]
Description=nginx service
After=network.target 
   
[Service] 
Type=forking 
ExecStart=/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
ExecReload=/usr/local/nginx/sbin/nginx -s reload
ExecStop=/usr/local/nginx/sbin/nginx -s quit
PrivateTmp=true 
   
[Install] 
WantedBy=multi-user.target
登入後複製

開機自動啟動 

systemctl enable nginx.service
登入後複製

相關推薦:nginx教學

以上是設定nginx開機自啟動的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:csdn.net
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!