RHEL/CentOS 7中Nginx的systemd service

Posted 欢迎来到快乐嘉年华的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RHEL/CentOS 7中Nginx的systemd service相关的知识,希望对你有一定的参考价值。

源码安装的nginx ,没有systemd service 管理 nginx

下面教程,告诉你如何设置nginx 的systemd service

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=/var/run/nginx.pid
ExecStartPre=/usr/local/nginx/sbin/nginx -t
ExecStart=/usr/local/nginx/sbin/nginx
ExecReload=/usr/local/nginx/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.停止服务

systemctl stop nginx.service

6.重载服务

systemctl reload nginx.service

以上是关于RHEL/CentOS 7中Nginx的systemd service的主要内容,如果未能解决你的问题,请参考以下文章

RHEL/CentOS 安装 nginx

CentOS 7.4 下安装Epel源和Nginx

RHEL8/CentOS8的基础防火墙配置-用例

Linux(RHEL7.0)下安装nginx-1.10.2

如何在RHEL/CentOS 7以及Fedora中配置FirewallD

Centos7 / RHEL 7 双网卡绑定