Linux (CentOS)下配置多個Tomcat同時執行
首先在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 檔案,使用命令 vim /etc/sysconfig/iptables 開啟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 1101 --syn -j ACCEPT
在linux系統中我開放了兩個埠25和8080,25是ssh終端登陸使用的埠,1101就是我們tomcat使用的埠。
更改完成後,還需要重新執行服務,命令下使用命令
service iptables restart
然後,就可以在外部訪問了