<code id="4ob3d"><listing id="4ob3d"></listing></code>

  • <b id="4ob3d"></b>

    Centos8 Nginx 配置開機自動啟動

    Centos8 Nginx 配置開機自動啟動



    學(xué)習(xí)下載專區(qū) 【2021-01-16 14:43】


    第一步:創(chuàng)建 service文件

    vim /lib/systemd/system/nginx.service
    • /lib 與 /usr/lib 我這里配置時是一樣的,在那個文件夾配置都可以

    第二步:編寫 啟動腳本

    [Unit]
    
    Description=nginx service
    
    After=network.target
    
    [Service]
    
    Type=forking
    
    PIDFile=/home/app/nginx/log/nginx.pid
    
    ExecStart=/home/app/nginx/sbin/nginx
    
    ExecReload=/home/app/nginx/sbin/nginx -s reload
    
    ExecStop=/home/app/nginx/sbin/nginx -s stop
    
    PrivateTmp=true[Install]
    
    WantedBy=multi-user.target

    腳本介紹

    Description

    服務(wù)描述

    After

    如果該字段指定的 Unit 也要啟動,那么必須在當(dāng)前 Unit 之前啟動

    Type=forking

    后臺運行

    PIDFile=/home/app/nginx/log/nginx.pid

    nginx.pid 文件需要在,nginx配置文件中查找。如果查不到,不配置此屬性也可以

    如果type是后臺運行,那么建議將此屬性加上。指定pid。

    ExecStart=/home/app/nginx/sbin/nginx

    啟動腳本

    ExecReload=/home/app/nginx/sbin/nginx -s reload

    重啟腳本

    ExecStop=/home/app/nginx/sbin/nginx -s stop

    停止腳本

    PrivateTmp=true

    是否使用私有tmp目錄

    WantedBy=multi-user.target

    運行級別下服務(wù)安裝的相關(guān)設(shè)置,可設(shè)置為多用戶,即系統(tǒng)運行級別為3

    第三步:保存退出,重新加載systemd

    systemctl daemon-reload

    重新加載,使 systemd生效

    第四步:驗證腳本

    # 查看服務(wù)狀態(tài)  systemctl status nginx.service
    # 停止服務(wù)      systemctl stop nginx.service
    # 啟動服務(wù)      systemctl start nginx.service
    # 重啟服務(wù)      systemctl restart nginx.service

    第五步:配置開機自啟

    #開啟開機自啟
    systemctl enable nginx.service
    #取消開機自啟
    systemctl disable nginx.service

    文件來源:https://www.cnblogs.com/easonchean/p/14199109.html


    友情鏈接:
    SQL數(shù)據(jù)庫修復(fù)專家
    • 關(guān)注微博
      聯(lián)系QQ
    • 二維碼
    • 掃一掃加關(guān)注

    ——信陽市速全網(wǎng)絡(luò)科技有限公司——

    版權(quán)所有:信陽市速全網(wǎng)絡(luò)科技有限公司

    豫ICP備19030104號-2

    天堂天码av影视亚洲中文字幕,色综合av在线,狠狠躁天天躁无码不卡,日本三级au视频

    <code id="4ob3d"><listing id="4ob3d"></listing></code>
    
    
  • <b id="4ob3d"></b>