红联Linux门户
Linux帮助

CentOS下配置多个Tomcat同时运行

发布时间:2015-04-22 21:26:08来源:linux网站作者:qingyizhishi

首先在CentOS下安装好JDK,下载好Tomcat,我的是apache-tomcat-7.0.50,不用专门配置CATALINA_2_BASE,CATALINA_2_HOME等环境变量。

把tomcat解压到linux两个不同的文件夹下,然后把各自conf下的server.xml打开修改关闭端口与启动端口。这样就可以在linux下同时运行两个tomcat了。运行更多tomcat方法是一样的。


<Server port="
" shutdown="SHUTDOWN">
<Connector port="
" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
<Connector port="
" protocol="AJP/1.3" redirectPort="8443" />


启动好后有时候会打不开网页,可能是iptables 阻止了端口;顺带说明iptables 的开启与关闭。


1.Linux防火墙(Iptables)重启系统生效

开启:chkconfig iptables on

关闭:chkconfig iptables off


2.Linux防火墙(Iptables) 即时生效,重启后失效

开启:service iptables start

关闭:service iptables stop


需要说明的是对于Linux下的其它服务都可以用以上命令执行开启和关闭操作。

在开启了Linux防火墙(Iptables)时,做如下设置,开启25和110端口。


修改/etc/sysconfig/iptables 文件,添加以下内容:

-A RH-Firewall-1-INPUT -m state --state NEW -p tcp -m tcp --dport 25 --syn -j ACCEPT

-A RH-Firewall-1-INPUT -m state --state NEW -p tcp -m tcp --dport 110 --syn -j ACCEPT