centos7下nginx添加到自定义系统服务中提示Access denied

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7下nginx添加到自定义系统服务中提示Access denied相关的知识,希望对你有一定的参考价值。

安装好nginx后,添加到系统服务中

在/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=/your nginx pid file path/nginx.pid
ExecStartPre=/your nginx path/sbin/nginx -t -c /your nginx path/conf/nginx.conf
ExecStart=/your nginx path/sbin/nginx -c /your nginx path/conf/nginx.conf
ExecReload=/bin/kill -s HUP $MAINPID
ExecStop=/bin/kill -s QUIT $MAINPID
PrivateTmp=true
 
[Install]
WantedBy=multi-user.target

添加完之后,开启服务

systemctl enable nginx.service

但是提示错误:Access denied

搜了一下原因,是SELinux造成的。解决方案有两种:

一,

systemctl daemon-reexec

二,这种方法会存在安全隐患

setenforce 0

 

以上是关于centos7下nginx添加到自定义系统服务中提示Access denied的主要内容,如果未能解决你的问题,请参考以下文章

CentOS7设置自定义开机启动,添加自定义系统服务

CentOS7.4 Nginx添加系统服务及开机自启动

Centos7添加nginx为系统服务

CentOS7添加Nginx为系统服务

nginx 404重定向到自定义页面

CentOS7利用systemctl添加自定义系统服务