在同一台Tomcat服务器上不同端口部署Web服务

3

我有一个使用struts开发的web门户,部署在端口8080上的tomcat上,现在我想在同一台tomcat服务器上不同的端口8090上部署web服务。

C:\tomcat-6.0.32\conf\server.xml:

<?xml version='1.0' encoding='utf-8'?>
<Server port="8005" shutdown="SHUTDOWN">
   <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />
   <Listener className="org.apache.catalina.core.JasperListener" />
   <Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener" />
   <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener" />
   <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />

  <GlobalNamingResources>
    <Resource name="UserDatabase" auth="Container"
          type="org.apache.catalina.UserDatabase"
          description="User database that can be updated and saved"
          factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
          pathname="conf/tomcat-users.xml" />
  </GlobalNamingResources>

  <Service name="Catalina">        
  <Connector port="8080" protocol="HTTP/1.1" 
           connectionTimeout="20000" 
           redirectPort="8443" />
  <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />

  <Engine name="Catalina" defaultHost="localhost">
    <Realm className="org.apache.catalina.realm.UserDatabaseRealm"
         resourceName="UserDatabase"/>
    <Host name="localhost"  appBase="webapps"
        unpackWARs="true" autoDeploy="true"
        xmlValidation="false" xmlNamespaceAware="false">
    </Host>
  </Engine>
  </Service>

  <Service name="testing">        
    <Connector port="8090" protocol="HTTP/1.1" 
           connectionTimeout="20000" 
           redirectPort="9443" />
    <Connector port="8092" protocol="AJP/1.3" redirectPort="9443" />
    <Engine name="testing" defaultHost="localhost">
      <Realm className="org.apache.catalina.realm.UserDatabaseRealm"
         resourceName="UserDatabase"/>
      <Host name="localhost"  appBase="webapps"
        unpackWARs="true" autoDeploy="true"
        xmlValidation="false" xmlNamespaceAware="false">
      </Host>
    </Engine>
  </Service>
</Server>

这里,我添加了一个名为“testing”的新服务条目,以便将Web服务部署在8090端口。门户的WAR文件已经解压缩到C:\tomcat-6.0.32\webapps\ROOT目录中。

C:\tomcat-6.0.32\conf\Catalina\localhost\ROOT.xml包含以下有关Web门户的条目:

<?xml version="1.0" encoding="UTF-8"?>

<Context path="/" docBase="" debug="5" reloadable="false" useHttpOnly="true" crossContext="true">
</Context>

现在,针对Web服务,我创建了C:\tomcat-6.0.32\conf\testing\localhost\testing.xml文件,并写入以下内容:
<?xml version="1.0" encoding="UTF-8"?>

<Context path="/" docBase="C:/testing" debug="5" reloadable="false" useHttpOnly="true" crossContext="true">
</Context>

在C:/testing中,我只放置了abc.htm文件,以查看是否可以从http://localhost:8090/abc.htm访问该文件,但是它没有起作用。相反,当我访问http://localhost:8090时,它显示了位于C:\tomcat-6.0.32\webapps\ROOT目录中的index.html文件,并且http://localhost:8080会出现404错误。

这是我的catalina.log:

INFO: Deploying configuration descriptor ROOT.xml
Jan 15, 2012 11:16:25 PM org.apache.coyote.http11.Http11Protocol start
INFO: Starting Coyote HTTP/1.1 on http-8080
Jan 15, 2012 11:16:25 PM org.apache.jk.common.ChannelSocket init
INFO: JK: ajp13 listening on /0.0.0.0:8009
Jan 15, 2012 11:16:25 PM org.apache.jk.server.JkMain start
INFO: Jk running ID=0 time=0/19  config=null
Jan 15, 2012 11:16:25 PM org.apache.catalina.core.StandardService start
INFO: Starting service testing
Jan 15, 2012 11:16:25 PM org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/6.0.32
Jan 15, 2012 11:16:25 PM org.apache.catalina.startup.HostConfig deployDescriptor
INFO: Deploying configuration descriptor testing.xml
Jan 15, 2012 11:16:25 PM org.apache.catalina.startup.HostConfig deployDirectory
INFO: Deploying web application directory ROOT
Jan 15, 2012 11:16:25 PM org.apache.coyote.http11.Http11Protocol start
INFO: Starting Coyote HTTP/1.1 on http-8090
Jan 15, 2012 11:16:25 PM org.apache.jk.common.ChannelSocket init
INFO: JK: ajp13 listening on /0.0.0.0:8092
Jan 15, 2012 11:16:25 PM org.apache.jk.server.JkMain start
INFO: Jk running ID=0 time=0/16  config=null
Jan 15, 2012 11:16:25 PM org.apache.catalina.startup.Catalina start
INFO: Server startup in 510 ms

有人能告诉我出了什么问题吗?

更新:我刚刚注意到,如果我将index.html放在C:\tomcat-6.0.32\webapps目录中,它可以在http://localhost:8090访问。现在有人能帮我解决这个问题吗?我想把index.html放在其他目录中。

谢谢!


也许这可以帮助你:http://wiki.apache.org/tomcat/HowTo#How_do_I_override_the_default_home_page_loaded_by_Tomcat.3F - Dyonisos
它并没有解决我的原始问题。我认为我的BaseContext路径不正确。但是不确定如何修复它... - Mike
1个回答

3
请查看这篇文章。 https://personal.ntu.edu.sg/ehchua/programming/howto/Tomcat_More.html
<Service name="reciver">  
                <Connector port="8080" maxHttpHeaderSize="8192" maxThreads="10"   
                           enableLookups="false" acceptCount="100"  
                           connectionTimeout="10000" disableUploadTimeout="true"   
                           useBodyEncodingForURI="true"/>  
                <Engine name="reciver" defaultHost="localhost" jvmRoute="host1">  
                        <Realm className="org.apache.catalina.realm.UserDatabaseRealm"  
                               resourceName="UserDatabase" />  
                        <Host name="localhost" appBase="webapps" unpackWARs="true"  
                              autoDeploy="false" xmlValidation="false"  
                              xmlNamespaceAware="false">  
                                <Context docBase="browser" path="/browser" reloadable="false"/>  
                        </Host>  
                </Engine>  
        </Service>  
        <Service name="reciver2">  
                <Connector port="8081" maxHttpHeaderSize="8192" maxThreads="10"   
                           enableLookups="false" acceptCount="1"  
                           connectionTimeout="10000" disableUploadTimeout="true"   
                           useBodyEncodingForURI="true" proxyName="example.pt" proxyPort="80"/>  
                <Engine name="reciver2" defaultHost="example_app" jvmRoute="host2">  
                        <Host name="example_app" appBase="test_app/example_app" unpackWARs="true"  
                              autoDeploy="false" xmlValidation="false"  
                              xmlNamespaceAware="false">  
                                <Context docBase="example_app" path="/example_app" reloadable="false"/>  
                        </Host>  
                </Engine>  
</Service>  

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接