我在公司局域网内的服务器上设置了基本的 tomcat 网站 (tomcat 8.0.3)。如果我尝试从工作电脑通过在 Google Chrome 中输入网址来访问该网站,则无法正常工作。
运行Tomcat服务器的计算机的IP是192.1xx.132.125:8080
。我的工作计算机的IP是192.1xx.129.75
。
我可以将我的工作电脑 ping 到服务器。如果我http://192.1xx.132.125:8080
在电脑上使用 Google Chrome 浏览器输入,则会收到以下错误。
有人能指出为什么会发生这种情况吗?另外,我的网络服务器是无头的。我可以使用 访问该服务器上的网页curl
。由于这是一个非常规端口号,我是否需要更新服务器上的 IP 表?
我已经运行了这个命令
sudo iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 8080 -j ACCEPT -m comment --comment "Tomcat Server port"
如上所述http://serverfault.com/questions/341804/opening-up-port-8080-in-centos
答案1
8080
对于 Centos 7,您可以使用以下命令启用端口:
firewall-cmd --zone=public --add-port=8080/tcp --permanent
firewall-cmd --reload