方法:
一、安裝tomcat1,過程爲解壓縮。
二、拷貝壓縮後的文件,命名爲tomcat2。
修改tomcat2中配置文件,tomcat1保持不變
server.xml,
<Server port="8006" shutdown="SHUTDOWN">
端口改成8006,tomcat1爲8005
<Connector port="8081" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
端口改成8081,tomcat1爲8080
<Connector port="8010" protocol="AJP/1.3" redirectPort="8443" />
端口改成8010,tomcat1爲8009
tomcat配置文件元素說明參考:
出現問題:
java.lang.Exception: Socket bind failed: [730048]
緣由:
端口被佔用,沒有正常關閉tomcat。
解決辦法:
打開資源管理器,kill掉tomcat進程。java(TM)xxx進程。