1、下载tomcat(区分windows和Linux,以tar.gz为后缀名的是Linux操作系统使用的)。
官网下载地址:http://test.m.xiaoyuanhao.com/micro/app/sign?corpid=wx981d0202130ed8e7
2、tomcat上传解压到/usr/local中(可以使用xftp或filezilla上传)。
3、修改tomcat服务器的启动端口。(tomcat服务器运行时是需要JDK支持的,所以必须配置好JDK用到的那些环境变量)
修改将Tomcat服务器启动时使用的端口,例如改成7777
修改完server.xml文件之后,保存,退出。
4、Tomcat服务器启动和关闭。
开启防火墙出现的问题:
问题一:Failed to start iptables.service: Unit not found;
问题二:Unit iptables.service failed to load: No such file or directory
以上两个问题是:centos从7开始默认用的是firewalld,这个是基于iptables的,虽然有iptables的核心,但是iptables的服务是没安装的。所以你只要停止firewalld服务即可:
关闭:systemctl stop firewalld.service && systemctl disable firewalld.service
启动:systemctl start firewalld.service && systemctl enable firewalld.service