修改tomcat端口号
diff --git a/tomcat-7.0.42/conf/server.xml b/tomcat-7.0.42/conf/server.xml
index dd41370..81cba6c 100644
--- a/tomcat-7.0.42/conf/server.xml
+++ b/tomcat-7.0.42/conf/server.xml
@@ -19,7 +19,7 @@
define subcomponents such as "Valves" at this level.
Documentation at /docs/config/server.html
-->
-<Server port="8005" shutdown="SHUTDOWN">
+<Server port="9005" shutdown="SHUTDOWN">
<!-- Security listener. Documentation at /docs/config/listeners.html
<Listener className="org.apache.catalina.security.SecurityListener" />
-->
@@ -67,7 +67,7 @@
APR (HTTP/AJP) Connector: /docs/apr.html
Define a non-SSL HTTP/1.1 Connector on port 8080
-->
- <Connector executor="tomcatThreadPool" port="8080" protocol="HTTP/1.1"
+ <Connector executor="tomcatThreadPool" port="9008" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" URIEncoding="UTF-8" />
<!-- A "Connector" using the shared thread pool-->
@@ -88,7 +88,7 @@
-->
<!-- Define an AJP 1.3 Connector on port 8009 -->
- <Connector executor="tomcatThreadPool" port="8009" protocol="AJP/1.3" redirectPort="8443" URIEncoding="UTF-8" />
+ <Connector executor="tomcatThreadPool" port="9009" protocol="AJP/1.3" redirectPort="8443" URIEncoding="UTF-8" />
<!-- An Engine represents the entry point (within Catalina) that processes