Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
750 views
in Technique[技术] by (71.8m points)

linux(centos)3000端口无法访问(防火墙已关、安全组已设置)

使用node开启了3000端口

image.png

安全组和防火墙都设置了

image.png
image.png

使用的是nginx

image.png

但是3000端口,无论是通过nginx代理转发,还是在浏览器上面直接访问3000端口都访问不到

nginx报错信息

image.png

之前是显示超时,然后我设置了proxy_read_timeout 150,还是不行

有哪位大佬知道是什么原因嘛?

PS:服务器IP:123.57.21.74


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

貌似你的 node 监听在 IPv6 地址 :::3000,因此 nginx 配置应改成

- proxy_pass http://127.0.0.1:3000/;
+ proxy_pass http://localhost:3000/;

此处假定 localhost 可以解析成 IPv6 和 IPv4 两个地址,请查看 /etc/hosts 文件确认。

只有监听在 IPv4 地址 0.0.0.0:3000 时,才能用 http://127.0.0.1:3000/


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...