linux tomcat starter
转载请注明出处WangYuheng’s Blog
CentOs7.2 运行tomcat
下载tomcat
下载Binary Distributions Core版本
wget http://apache.fayea.com/tomcat/tomcat-9/v9.0.0.M9/bin/apache-tomcat-9.0.0.M9.tar.gz
解压
tar -zxvf apache-tomcat-9.0.0.M9.tar.gz
启动tomcat
在apache-tomcat-9.0.0.M9的bin目录下执行
sh start.sh
关闭防火墙
centos 7
停止
systemctl stop firewalld.service
禁用
systemctl disable firewalld.service
之前的版本
停止
service iptables stop
禁用
chkconfig iptables off
通过浏览器访问http://服务器ip:8080 可以看到tomcat界面