Nginx - bind() to 0.0.0.0:xxxx failed (13: Permission denied)

Nginx 启动异常记录

运行下面的指令,启动nginx。

[root@localhost /]# sudo systemctl start nginx

预期是nginx启动成功,但是出现了下面这个问题

Job for nginx.service failed because the control process exited with error code. See "systemctl status nginx.service" and "journalctl -xe" for details.

启动失败随之去查看nginx的日志

[root@localhost /]# tail -f -n 200 /var/log/nginx/error.log 
2020/04/17 15:11:05 [emerg] 13475#13475: bind() to 0.0.0.0:8070 failed (13: Permission denied)

端口绑定失败,权限不足。经查询发现是开启了selinux导致的,关闭即可。

处理命令

先检查selinux是否开启了,输入以下命令,返回enforcing 那就是开启。 disabled 或 permissive是关闭。

[root@localhost /]# getenforce
Enforcing

临时关闭方式,0对应关闭,1是开启。

[root@localhost /]# setenforce 0

永久关闭方式,修改配置文件,最后执行source命令,使配置立即生效

[root@localhost /]# vim /etc/selinux/config

SELINUX=disabled

[root@localhost /]# source /etc/selinux/config

 至此再次启动Nginx即可。

你可能感兴趣的:(Nginx)