centos 7 nginx启动脚本

前端之家收集整理的这篇文章主要介绍了centos 7 nginx启动脚本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

centos7使用systemd代替之前的systemv的启动脚本,可以说更简单。不再需要编写一长段脚本。


复制以下内容到/usr/lib/systemd/system/Nginx.service

[Unit]
Description=Nginx-highperformancewebserver
Documentation=http://Nginx.org/en/docs/
After=network.targetremote-fs.targetnss-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-sHUP$MAINPID
ExecStop=/bin/kill-sQUIT$MAINPID
PrivateTmp=true

[Install]
WantedBy=multi-user.target

即可使用systemctl start|stop|reload|restart Nginx 进行启动重启等操作。

systemctl enable Nginx即可实现开机启动。

systemctl disable Nginx取消开机启动。

原文链接:https://www.f2er.com/centos/378718.html

猜你在找的CentOS相关文章