第一步:創(chuàng )建 service文件
vim /lib/systemd/system/nginx.service
第二步:編寫(xiě) 啟動(dòng)腳本
[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 之前啟動(dòng)
Type=forking
后臺運行
PIDFile=/home/app/nginx/log/nginx.pid
nginx.pid 文件需要在,nginx配置文件中查找。如果查不到,不配置此屬性也可以
如果type是后臺運行,那么建議將此屬性加上。指定pid。
ExecStart=/home/app/nginx/sbin/nginx
啟動(dòng)腳本
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)設置,可設置為多用戶(hù),即系統運行級別為3
第三步:保存退出,重新加載systemd
systemctl daemon-reload
重新加載,使 systemd生效
第四步:驗證腳本
# 查看服務(wù)狀態(tài) systemctl status nginx.service
# 停止服務(wù) systemctl stop nginx.service
# 啟動(dòng)服務(wù) systemctl start nginx.service
# 重啟服務(wù) systemctl restart nginx.service
第五步:配置開(kāi)機自啟
#開(kāi)啟開(kāi)機自啟
systemctl enable nginx.service
#取消開(kāi)機自啟
systemctl disable nginx.service
文件來(lái)源:https://www.cnblogs.com/easonchean/p/14199109.html