關於CentOS7將服務添加為系統服務

來源:互聯網
上載者:User

標籤:設定檔   service   system   status   enable   

  1. 先介紹一下CentOS7下系統的服務啟動關閉的變化

     service  服務名  start/stop/status  ==  systemctl    start/stop/status    服務名

     chkconfig  --list  == systemctl   list-units-type

     chkconfig    服務名 on/off       ==   systemctl  enable/disable   服務名(具體的層級看設定檔)

 2.  要將某個服務添加為系統服務(以nginx為例),需要添加一個檔案,必須以.service 結尾,這比之前的sysV要容易很多

[[email protected] ~]#vim  /usr/lib/systemd/system/nginx.service
[Unit]
Description=Web Service
After=network.target
[Service]                                                            //service 的內容非常重要,必須為絕對路徑
PIDFile=/usr/local/nginx/logs/nginx.pid          //pid檔案的存放位置
ExecStart=/usr/local/nginx/sbin/nginx                                 //啟動命令
ExecStop=/usr/local/nginx/sbin/nginx -s stop                     //關閉命令
ExecReload=/usr/local/nginx/sbin/nginx -s reload             //重載命令
PrivateTmp=true
[Install]                                                               //必不可少,要不添加為開機自起的時候會報錯
WantedBy=default.target  //類似於之前的--level 35    現在的target就相當於之前的運行層級

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.