我在Windows Server上安裝了Tomcat。在本地,如果輸入localhost:8080
或127.0.0.1:8080
一切正常。不能看到我的IP地址外
我還設置:
<Connector
port="8080"
protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443"
address="0.0.0.0"
/>
但是,當我鍵入其IP地址或主機名(在AWS安裝)是一個錯誤:
This site can’t be reached
我也有在防火牆解鎖端口
通過IP頁面本地或外部都看不到
你允許AWS防火牆設置TCP端口8080?另外,運行'netstat -an'來查看端口8080是否真的在0.0.0.0上被監聽。 – rustyx
IP地址是專用地址嗎? https://en.wikipedia.org/wiki/Private_network#Private_IPv4_address_spaces –
IP是公共................. – programmerJavaPL