liunx安装tomcat

141 阅读1分钟
  1. 使用wget命令拿到压缩包
    • 未安装wget先安装
  2. 使用tar -zxvf 解压文件
  3. 进入conf目录 使用 vim server.xml 文件配置访问端口
  4. 关闭防火墙或者配置允许连接端口
1:查看防火状态

systemctl status firewalld

service  iptables status

2:暂时关闭防火墙

systemctl stop firewalld

service  iptables stop

3:永久关闭防火墙

systemctl disable firewalld

chkconfig iptables off

4:重启防火墙

systemctl enable firewalld

service iptables restart