首页 > 代码库 > centos 7 nginx启动脚本
centos 7 nginx启动脚本
centos7使用systemd代替之前的systemv的启动脚本,可以说更简单。不再需要编写一长段脚本。
复制以下内容到/usr/lib/systemd/system/nginx.service
[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.target
即可使用systemctl start|stop|reload|restart nginx 进行启动重启等操作。
systemctl enable nginx即可实现开机启动。
systemctl disable nginx取消开机启动。
本文出自 “Kirito” 博客,请务必保留此出处http://aaronchou.blog.51cto.com/8981576/1898359
centos 7 nginx启动脚本
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。