Centos7添加nginx为系统服务

Posted 小小仓鼠

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos7添加nginx为系统服务相关的知识,希望对你有一定的参考价值。

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为系统服务的主要内容,如果未能解决你的问题,请参考以下文章

CentOS7.4 Nginx添加系统服务及开机自启动

centos7下nginx添加到自定义系统服务中提示Access denied

Eg挨蒙—阿里云Centos7部署Lnmp+Zabbix+Grafana监控系统

Flask+uWSGI+Nginx项目部署

CentOS7+Nginx设置Systemctl restart nginx.service服务

Centos7 nginx 搭建https服务器