外部无法连接tomcat

发布于 2024-10-16 15:08:37 字数 214 浏览 6 评论 0原文

在此处输入图像描述

我在 openSuse 端口 8080 上安装 tomcat 服务器,但我可以连接到 http://127.0.0.1:8080 仅在我的本地计算机中。

enter image description here

I install the tomcat server on my openSuse port 8080, but I can connect to http://127.0.0.1:8080 only in my local machine.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清音悠歌 2024-10-23 15:08:37

你有配置像 iptables 这样的 Linux 防火墙吗?

如果是 iptables,您可以使用此语句修复此问题

  iptables -I INPUT -p tcp --dport 8080 -j ACCEPT

(您更改 iptables 配置以接受外部 tcp 连接,如果您正在编辑防火墙端口,请确保您知道自己在做什么)

do you have a linux firewall like iptables configured?

If it's iptables you can fix this with this statement

  iptables -I INPUT -p tcp --dport 8080 -j ACCEPT

(You change your iptables config to accept external tcp connections, please make shure that you know what you are doing if your are editing firewall ports)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文