Centos 7上配置Nginx代理:connect() failed (111: Connection refused) while connecting to upstream,8080/tcp

**

Nginx代理时出现错误:* connect() failed (111: Connection refused) while connecting to upstream, client: 127.0.0.1, server: www.abc.com, request: “GET / HTTP/1.1”,upstream:“http://127.0.0.1:8080/index.html”, host

**
网上大部分的解决方法方法针对的时9000号端口,但是这个这里写明了是8080号端口…不需要安装php-fpm

解决方法:
看看端口8080在后端server02上是不是打开的 netstat -ant | grep 8080
若没有任何的记录则在/etc/nginx/conf.d/default.conf中添加
server{
listen 80;
listen 8080;#添加这行
server_name www.abc.com ;
}
保存后nginx -s reload
然后netstat -ant | grep 8080 出现如下

[root@localhost conf.d]# netstat -ant | grep 8080
tcp 0 0 0.0.0.0:8080 0.0.0.0:* LISTEN

防火墙放行端口 --: firewall-cmd --zone=public --add-port=8080/tcp --permanent

你可能感兴趣的:(nginx)