tomcat 多端口配置

一、D:\apache-tomcat-6.0.29\conf\Catalina这个文件夹复制一份至同级目录下,并改名为MyCatalina。

二、新建D:\apache-tomcat-6.0.29\mywebapps文件夹,并把webapps文件夹下的host-manager和manager 文件夹复制到mywebapps文件夹。

三、在server.xml的:<Server></Server>节点中添加:
  <Service name="MyCatalina">
    <Connector port="9010" protocol="HTTP/1.1"
               connectionTimeout="20000"
               redirectPort="8453" />      
    <Connector port="8019" protocol="AJP/1.3" redirectPort="8453" />


    <Engine name="MyCatalina" defaultHost="localhost">
      <Realm className="org.apache.catalina.realm.UserDatabaseRealm"
             resourceName="UserDatabase"/>

      <Host name="localhost"  appBase="mywebapps"
            unpackWARs="true" autoDeploy="true"
            xmlValidation="false" xmlNamespaceAware="false">
      </Host>
    </Engine>
  </Service>

你可能感兴趣的:(apache,tomcat,xml)