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

Centos7添加nginx为系统服务

时间:2020-07-05 13:54:18      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:function   ant   csharp   highlight   load   mon   ecs   cal   centos7   

1、Centos7添加nginx为系统服务、

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

[Unit]
Description=nginx -  web server
After=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 daemon-reload

3、启动、停止nginx测试

  systemctl start  nginx.service

  systemctl stop  nginx.service

4、设置开机启动

  systemctl  enable nginx

  

 
 

Centos7添加nginx为系统服务

标签:function   ant   csharp   highlight   load   mon   ecs   cal   centos7   

原文地址:https://www.cnblogs.com/y593216/p/13245749.html

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