标签:selinux permission denied centos7
在进行Nginx+Tomcat 负载均衡的时候遇到了这个权限问题,在error.log日志中,我们可以看到如下:
connect() to 127.0.0.1:8080 failed (13: Permission denied) while connecting to upstream,
经过一番检查以及google,应该是SeLinux的导致的。可以选择一些两种方式进行:
getenforce 查看selinux状态
setenforce 0 (将selinux设置成Permissive,1为enforecing)
1、关闭SeLinux,可以查看以下文章:
CentOS下查看SeLinux状态及关闭SeLinux
2、执行下面的命令
setsebool -P httpd_can_network_connect 1
原文地址:
解决Nginx的connect() to 127.0.0.1:8080 failed (13: Permission denied)
解决Nginx的connect() to 127.0.0.1:8080,selinux
标签:selinux permission denied centos7
原文地址:http://jasonzhu.blog.51cto.com/5594807/1762345