linux启动Tomcat访问不了-防火墙

现象:

Tomcat启动成功,ip+端口无法访问;

解决:

查看防火墙服务状态:

systemctl status firewalld

Active: active 是启动状态

关闭防火墙:

service firewalld stop

不用重启Tomcat 访问成功;

补充:

Active: inactive (dead)灰色表示停止

#systemctl start firewalld.service //开启服务

#systemctl enable firewalld.service //开机制动启动

#systemctl stop firewalld.service //关闭服务

#systemctl disable firewalld.service //禁止开机启动

你可能感兴趣的:(linux启动Tomcat访问不了-防火墙)