下面的不一定有用,第一次是按照下面去做的,第二次就不行了,原因還沒時間去深究。windows下面,一臺電腦安裝多個tomcat。我安裝了2個tomcat6.0,下載地址http://tomcat.apache.org/download-60" />

欧美三区_成人在线免费观看视频_欧美极品少妇xxxxⅹ免费视频_a级毛片免费播放_鲁一鲁中文字幕久久_亚洲一级特黄

轉 一臺電腦安裝多個tomcat

系統 1918 0

只要改這一個就可以了。port 改成8081即可。<Connector port="8081" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8444" />??

下面的不一定有用,第一次是按照下面去做的,第二次就不行了,原因還沒時間去深究。

?

?

windows下面,一臺電腦安裝多個tomcat。我安裝了2個tomcat 6.0,下載地址http://tomcat.apache.org/download-60.cgi。選擇6.0.32目錄下的binary distributions下的core 我電腦是32未windows系統,選擇了32位windows zip文件。?
? 1).解壓縮到2個目錄,對于每個tomcat 6.0目錄,打開apache-tomcat-6.0.32\bin下面的catalina.bat和startup.bat在rem Guess CATALINA_HOME if not defined之后加上set CATALINA_HOME="D:\我的文檔\下載\apache-tomcat-6.0.32",我解壓縮的目錄為D:\我的文檔\下載\。替換為相應的你的解壓縮目錄。?
? 2).對于第二個tomcat 6.0 打開apache-tomcat-6.0.32\conf下面的servicer.xml文件,查找port,修改port值,我默認的是每個端口值加1.<Server port="8006" shutdown="SHUTDOWN">?
<Connector port="8081" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8444" />?
<Connector port="8010" protocol="AJP/1.3" redirectPort="8444" />?
? 3).分別打開2個startup.bat運行http://localhost:8081和http://localhsot:8080即可。?

? 常見問題:1).startup.bat一閃即逝,沒有設置CATALINA_HOME,按照第一步操作。?
??????????? 2).2個tomcat對應同一個tomcat,連接端口沒有修改,修改Connector port="8081" protocol="HTTP/1.1"?
????????? 3).java虛擬機綁定失敗,可能沒有安裝jdk,如果以前java程序可以正常執行,查看Connector port="8010" protocol="AJP/1.3" redirectPort="8444",確保port值沒有重復,redirectPort值和其他幾處的redirectPort值相同。?
??? 至于登錄tomcat的用戶名和密碼,查看apache-tomcat-6.0.32\conf下的tomcat-user.xml文件<tomcat-users>?
<user username="tomcat" password="tomcat" roles="manager"/></tomcat-users>,如果文件不存在,新建一個xml文件,拷入上述這句話即可。username和password可變,rles必須是manager。?
??? 要想自定義一個常用虛擬路徑,比如運行自己寫的程序輸入地址http://localhost:8080/test,實際的程序在D:/test目錄下面,而不是在apache-tomcat-6.0.32\webapps目錄下面,可以在apache-tomcat-6.0.32\conf中的sevicer.xml中,</HOST>之前添加<Contex docBase="D:/test" path="/test" reloadable="true"></Context>。?
? 整個過程十分簡單,如果有問題,可以留言。我盡可能幫您解決。謝謝!

?

?

?

?

server.xml:

      <?xml version='1.0' encoding='utf-8'?>
<!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
  this work for additional information regarding copyright ownership.
  The ASF licenses this file to You under the Apache License, Version 2.0
  (the "License"); you may not use this file except in compliance with
  the License.  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
-->
<!-- Note:  A "Server" is not itself a "Container", so you may not
     define subcomponents such as "Valves" at this level.
     Documentation at /docs/config/server.html
 -->
<Server port="8006" shutdown="SHUTDOWN">
  <!-- Security listener. Documentation at /docs/config/listeners.html
  <Listener className="org.apache.catalina.security.SecurityListener" />
  -->
  <!--APR library loader. Documentation at /docs/apr.html -->
  <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />
  <!--Initialize Jasper prior to webapps are loaded. Documentation at /docs/jasper-howto.html -->
  <Listener className="org.apache.catalina.core.JasperListener" />
  <!-- Prevent memory leaks due to use of particular java/javax APIs-->
  <Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener" />
  <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />
  <Listener className="org.apache.catalina.core.ThreadLocalLeakPreventionListener" />

  <!-- Global JNDI resources
       Documentation at /docs/jndi-resources-howto.html
  -->
  <GlobalNamingResources>
    <!-- Editable user database that can also be used by
         UserDatabaseRealm to authenticate users
    -->
    <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>

  <!-- A "Service" is a collection of one or more "Connectors" that share
       a single "Container" Note:  A "Service" is not itself a "Container",
       so you may not define subcomponents such as "Valves" at this level.
       Documentation at /docs/config/service.html
   -->
  <Service name="Catalina">

    <!--The connectors can use a shared executor, you can define one or more named thread pools-->
    <!--
    <Executor name="tomcatThreadPool" namePrefix="catalina-exec-"
        maxThreads="150" minSpareThreads="4"/>
    -->


    <!-- A "Connector" represents an endpoint by which requests are received
         and responses are returned. Documentation at :
         Java HTTP Connector: /docs/config/http.html (blocking & non-blocking)
         Java AJP  Connector: /docs/config/ajp.html
         APR (HTTP/AJP) Connector: /docs/apr.html
         Define a non-SSL HTTP/1.1 Connector on port 8080
    -->
    <Connector port="8081" protocol="HTTP/1.1"
               connectionTimeout="20000"
               redirectPort="8443" />
    <!-- A "Connector" using the shared thread pool-->
    <!--
    <Connector executor="tomcatThreadPool"
               port="8080" protocol="HTTP/1.1"
               connectionTimeout="20000"
               redirectPort="8444" />
    -->
    <!-- Define a SSL HTTP/1.1 Connector on port 8443
         This connector uses the JSSE configuration, when using APR, the
         connector should be using the OpenSSL style configuration
         described in the APR documentation -->
    <!--
    <Connector port="8444" protocol="HTTP/1.1" SSLEnabled="true"
               maxThreads="150" scheme="https" secure="true"
               clientAuth="false" sslProtocol="TLS" />
    -->

    <!-- Define an AJP 1.3 Connector on port 8009 -->
    <Connector port="8010" protocol="AJP/1.3" redirectPort="8443" />


    <!-- An Engine represents the entry point (within Catalina) that processes
         every request.  The Engine implementation for Tomcat stand alone
         analyzes the HTTP headers included with the request, and passes them
         on to the appropriate Host (virtual host).
         Documentation at /docs/config/engine.html -->

    <!-- You should set jvmRoute to support load-balancing via AJP ie :
    <Engine name="Catalina" defaultHost="localhost" jvmRoute="jvm1">
    -->
    <Engine name="Catalina" defaultHost="localhost">

      <!--For clustering, please take a look at documentation at:
          /docs/cluster-howto.html  (simple how to)
          /docs/config/cluster.html (reference documentation) -->
      <!--
      <Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"/>
      -->

      <!-- Use the LockOutRealm to prevent attempts to guess user passwords
           via a brute-force attack -->
      <Realm className="org.apache.catalina.realm.LockOutRealm">
        <!-- This Realm uses the UserDatabase configured in the global JNDI
             resources under the key "UserDatabase".  Any edits
             that are performed against this UserDatabase are immediately
             available for use by the Realm.  -->
        <Realm className="org.apache.catalina.realm.UserDatabaseRealm"
               resourceName="UserDatabase"/>
      </Realm>

      <Host name="localhost"  appBase="webapps"
            unpackWARs="true" autoDeploy="true">

        <!-- SingleSignOn valve, share authentication between web applications
             Documentation at: /docs/config/valve.html -->
        <!--
        <Valve className="org.apache.catalina.authenticator.SingleSignOn" />
        -->

        <!-- Access log processes all example.
             Documentation at: /docs/config/valve.html
             Note: The pattern used is equivalent to using pattern="common" -->
        <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
               prefix="localhost_access_log." suffix=".txt"
               pattern="%h %l %u %t "%r" %s %b" />

      </Host>
    </Engine>
  </Service>
</Server>

    

轉 一臺電腦安裝多個tomcat


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 激情小说图 | 免费人成年短视频在线观看免费网站 | 人人澡人人澡 | 久久久久成人精品 | 九九精品视频在线 | 亚欧乱色一区二区三区 | 欧美日韩网址 | 奇米影视7777久久精品人人爽 | 国产精品一区久久久 | 精品日韩欧美一区二区三区在线播放 | 亚洲欧洲视频 | 亚洲成av | 二区欧美 | 亚洲欧美综合乱码精品成人网 | aaa毛片手机在线现看 | 91久久久久久 | 国产一国产一区秋霞在线观看 | 青草视频在线 | 久久99精品久久久久久综合 | 亚洲免费小视频 | 日韩国产欧美视频 | 欧美久久久久久 | 久久99在线 | 欧美一区二区三区精品国产 | 欧美一级在线免费 | 91精品在线看 | 欧美一级黄色影院 | 国产一区久久久 | 色吟av | 日本香港三级和澳门三级 | 成人一区二区三区 | 欧美妇乱xxxxx视频 | 久久99精品这里精品动漫6 | 免费观看一级特黄欧美大片 | 成人一级大片 | 一区二区三区毛A片特级 | 天天影院免费看电影 | 国产精品久久99 | 免费大片黄在线观看 | 色综合色综合色综合色综合 | 成人精品在线观看 |