码迷,mamicode.com
首页 > 其他好文 > 详细

systemctl 设置自定义nginx服务管理

时间:2019-12-24 18:59:18      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:list   art   rem   pre   建立   unit   reload   net   esc   

1、建立服务文件

vim /usr/lib/systemd/system/nginx.service

[Unit]
Description=The nginx HTTP and reverse proxy server
After=syslog.target 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=/usr/local/nginx/sbin/nginx -s reload
ExecStop=/usr/local/nginx/sbin/nginx -s stop
ExecQuit=/usr/local/nginx/sbin/nginx -s quit
PrivateTmp=true

[Install]
WantedBy=multi-user.target

 

2、加入开机启动

systemctl enable nginx.service

3、查看

systemctl list-units --type=service

nginx.service loaded active running The nginx HTTP and reverse proxy server

systemctl 设置自定义nginx服务管理

标签:list   art   rem   pre   建立   unit   reload   net   esc   

原文地址:https://www.cnblogs.com/litzhiai/p/12092836.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!