centos7 添加Nginx启动脚本

Posted

tags:

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

[Unit]
Description=nginx - high performance web server
Documentation=http://nginx.org/en/docs/
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=/bin/kill -s HUP $MAINPID
ExecStop=/bin/kill -s QUIT $MAINPID
PrivateTmp=true

[Install]
WantedBy=multi-user.targe


本文出自 “马行空” 博客,请务必保留此出处http://maxingkong.blog.51cto.com/6184921/1957286

以上是关于centos7 添加Nginx启动脚本的主要内容,如果未能解决你的问题,请参考以下文章

Centos7 nginx启动脚本

centos7添加开机启动服务/脚本

centOS7添加开机启动服务/执行脚本

centos7如何添加开机启动服务/脚本

Centos7下添加开机自启动服务和脚本

nginx启动脚本编写及设置开机自启动