端口 8080(tomcat7)无法从本地主机外部进行连接

端口 8080(tomcat7)无法从本地主机外部进行连接

我正在运行 tomcat7,但我认为设置没有问题。我可以从本地计算机连接到端口 8080。我无法从网络上的其他计算机连接到 8080。没有运行防火墙。

netstat -tulpn | grep LISTEN

tcp        0      0 127.0.0.53:53           0.0.0.0:*               LISTEN      -
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      -
tcp        0      0 127.0.0.1:3306          0.0.0.0:*               LISTEN      -
tcp6       0      0 :::22                   :::*                    LISTEN      -
tcp6       0      0 127.0.0.1:8005          :::*                    LISTEN      -
tcp6       0      0 :::7877                 :::*                    LISTEN      -
tcp6       0      0 :::8080                 :::*                    LISTEN      -
tcp6       0      0 :::80                   :::*                    LISTEN      -
nmap localhost 
PORT     STATE SERVICE
22/tcp   open  ssh
80/tcp   open  http
3306/tcp open  mysql
8080/tcp open  http-proxy
nmap server (from different computer)
PORT    STATE  SERVICE
22/tcp  open   ssh
80/tcp  open   http
443/tcp closed https
There is no firewall running
sudo ufw status
Status: inactive

我看到的所有内容都表明防火墙有问题,但实际上并没有运行防火墙。端口 80 在外部可见,但端口 8080 不可见。

任何帮助,将不胜感激。

相关内容