本文主要是介绍RHEL/CentOS 7中Nginx的systemd service,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在线安装预构建的Nginx,默认会创建Nginx的systemd服务,对应的服务文件是/usr/lib/systemd/system/nginx.service。文件内容如下:
[Unit]
Description=The NGINX HTTP and reverse proxy server
After=syslog.target network.target remote-fs.target nss-lookup.target[Service]
Type=forking
PIDFile=/run/nginx.pid
ExecStartPre=/usr/sbin/nginx -t
ExecStart=/usr/sbin/nginx
ExecReload=/usr/sbin/nginx -s reload
ExecStop=/bin/kill -s QUIT $MAINPID
PrivateTmp=true[Install]
WantedBy=multi-user.target
为了启动Nginx的systemd服务,步骤如下:
1. 设置nginx.service文件的权限
chmod 664 /usr/lib/systemd/system/nginx.service
2.开启服务启动时执行
systemctl enable nginx.service
3.启动服务
systemctl start nginx.service
4.查看服务状态
systemctl status nginx.service
5.验证服务
curl -I 127.0.0.1:8080
参考链接:
https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html-single/system_administrators_guide/index
https://www.nginx.com/resources/wiki/start/topics/examples/systemd/
https://www.nginx.com/resources/wiki/start/topics/examples/initscripts/
这篇关于RHEL/CentOS 7中Nginx的systemd service的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!