当前位置: > Linux集群 > 服务器集群 >

Apache+tomcat集群

时间:2014-11-07 18:21来源:linux.it.net.cn 作者:IT

一、安装

1.1、安装版本

apache-tomcat-7.0.40

apache httpd 2.2.22

tomcat-connectors-1.2.37-windows-i386-httpd-2.2.x

1.2、下载安装过程略

该配置为单机多tomcat节点配置。

 

二、配置

httpd.conf

在文件的末尾添加以下内容:

 

[php] view plaincopy
  1. #==================================================  
  2. #配置Apache与Tomcat之间的连接  
  3. LoadModule jk_module modules/mod_jk.so  
  4.   
  5. #指定tomcat监听配置文件  
  6. JkWorkersFile conf/workers.properties  
  7.   
  8. #指定日志存放位置  
  9. JkLogFile logs/mod_jk.log  
  10.   
  11. #指定日志输出级别  
  12. JkLogLevel warn  
  13.   
  14. HostnameLookups Off  
  15.   
  16.   
  17. #设置虚拟主机  
  18. <VirtualHost *>  
  19.   
  20.     ServerAdmin hehzdc@163.com  
  21.     Serveralias localhost  
  22.   
  23.     #站点路径中不能存在空格  
  24.     DocumentRoot "E:\HttpdRoot"  
  25.       
  26.     ServerName localhost:80  
  27.   
  28.     ErrorLog logs/shsc-error_log.txt  
  29.     CustomLog logs/shsc-access_log.txt common  
  30.   
  31.     <Directory />  
  32.         Options Indexes FollowSymLinks  
  33.         #Options None   #禁止索引文件目录的权限  
  34.         AllowOverride None  
  35.         Order allow,deny  
  36.         Allow from all  
  37.     </Directory>  
  38.   
  39.     #指定哪些请求转发给Tomcat处理,cluster1是workers.propertise配置文件里定义的负载均衡器的名字  
  40.       
  41.     #JkMount /servlet/* cluster1  
  42.     JkMount /*.jsp cluster1  
  43.     #JkMount /*.action cluster1  
  44.     #JkMount /*.do cluster1  
  45.     #JkMount /*.action cluster1  
  46.     #JkMount /*j_spring_security_check cluster1  
  47.       
  48. </VirtualHost>  


 

works.properties

该文件手动创建,放到httpd.conf文件同级目录下,文件内容:

 

[php] view plaincopy
  1. #为解决找不到负载分发器的问题  
  2. #workers.java_home=C:/Program Files/Java/jdk1.7.0_04  
  3.   
  4. worker.list=cluster1  
  5.   
  6. #========tomcat1============================================================  
  7. #ajp13端口号,在tomcat下server.xml配置,默认8009  
  8. worker.tomcat1.port=8009  
  9. #tomcat所在机器的IP地址  
  10. worker.tomcat1.host=localhost  
  11. #协议类型ajp13  
  12. worker.tomcat1.type=ajp13  
  13. #server的加权比重,值越高,分得的请求越多  
  14. worker.tomcat1.lbfactor=1  
  15.   
  16. #========tomcat2============================================================  
  17. worker.tomcat2.port=9009  
  18. worker.tomcat2.host=localhost  
  19. worker.tomcat2.type=ajp13  
  20. worker.tomcat2.lbfactor=1  
  21.   
  22. #========tomcat3============================================================  
  23. #worker.tomcat3.port=9019  
  24. #worker.tomcat3.host=192.168.68.171  
  25. #worker.tomcat3.type=ajp13  
  26. #worker.tomcat3.lbfactor=1  
  27.   
  28. #========负载均衡控制器配置=================================================  
  29. worker.cluster1.type=lb  
  30. worker.cluster1.balance_workers=tomcat1,tomcat2  
  31.   
  32. #关于tricky_session配置  
  33. # sticky_session  sticky_session_force        desc  
  34. # true            false                       SESSION会复制,有粘性  
  35. # true            true                        SESSION不复制,有粘性  
  36. # false           false                       SESSION会复制,有粘性  
  37. # false           true                        SESSION不复制,有粘性  
  38.   
  39. # sticky_session=true - 请求始终由当前的tomcat处理  
  40. worker.cluster1.sticky_session=false  
  41. # sticky_session_force=false - 当tomcat挂了时,将session复制到另一台继续  
  42. worker.cluster1.sticky_session_force=false  


 

 

tomcat1 的server.xml

 

 

[html] view plaincopy
  1. <?xml version='1.0' encoding='utf-8'?>  
  2. <!--  
  3.   Licensed to the Apache Software Foundation (ASF) under one or more  
  4.   contributor license agreements.  See the NOTICE file distributed with  
  5.   this work for additional information regarding copyright ownership.  
  6.   The ASF licenses this file to You under the Apache License, Version 2.0  
  7.   (the "License"); you may not use this file except in compliance with  
  8.   the License.  You may obtain a copy of the License at  
  9.   
  10.       http://www.apache.org/licenses/LICENSE-2.0  
  11.   
  12.   Unless required by applicable law or agreed to in writing, software  
  13.   distributed under the License is distributed on an "AS IS" BASIS,  
  14.   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
  15.   See the License for the specific language governing permissions and  
  16.   limitations under the License.  
  17. -->  
  18. <!-- Note:  A "Server" is not itself a "Container", so you may not  
  19.      define subcomponents such as "Valves" at this level.  
  20.      Documentation at /docs/config/server.html  
  21.  -->  
  22. <Server port="8005" shutdown="SHUTDOWN">  
  23.   <!-- Security listener. Documentation at /docs/config/listeners.html  
  24.   <Listener className="org.apache.catalina.security.SecurityListener" />  
  25.   -->  
  26.   <!--APR library loader. Documentation at /docs/apr.html -->  
  27.   <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />  
  28.   <!--Initialize Jasper prior to webapps are loaded. Documentation at /docs/jasper-howto.html -->  
  29.   <Listener className="org.apache.catalina.core.JasperListener" />  
  30.   <!-- Prevent memory leaks due to use of particular java/javax APIs-->  
  31.   <Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener" />  
  32.   <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />  
  33.   <Listener className="org.apache.catalina.core.ThreadLocalLeakPreventionListener" />  
  34.   
  35.   <!-- Global JNDI resources  
  36.        Documentation at /docs/jndi-resources-howto.html  
  37.   -->  
  38.   <GlobalNamingResources>  
  39.     <!-- Editable user database that can also be used by  
  40.          UserDatabaseRealm to authenticate users  
  41.     -->  
  42.     <Resource name="UserDatabase" auth="Container"  
  43.               type="org.apache.catalina.UserDatabase"  
  44.               description="User database that can be updated and saved"  
  45.               factory="org.apache.catalina.users.MemoryUserDatabaseFactory"  
  46.               pathname="conf/tomcat-users.xml" />  
  47.   </GlobalNamingResources>  
  48.   
  49.   <!-- A "Service" is a collection of one or more "Connectors" that share  
  50.        a single "Container" Note:  A "Service" is not itself a "Container",  
  51.        so you may not define subcomponents such as "Valves" at this level.  
  52.        Documentation at /docs/config/service.html  
  53.    -->  
  54.   <Service name="Catalina">  
  55.   
  56.     <!--The connectors can use a shared executor, you can define one or more named thread pools-->  
  57.     <!--  
  58.     <Executor name="tomcatThreadPool" namePrefix="catalina-exec-"  
  59.         maxThreads="150" minSpareThreads="4"/>  
  60.     -->  
  61.   
  62.   
  63.     <!-- A "Connector" represents an endpoint by which requests are received  
  64.          and responses are returned. Documentation at :  
  65.          Java HTTP Connector: /docs/config/http.html (blocking & non-blocking)  
  66.          Java AJP  Connector: /docs/config/ajp.html  
  67.          APR (HTTP/AJP) Connector: /docs/apr.html  
  68.          Define a non-SSL HTTP/1.1 Connector on port 8080  
  69.     -->  
  70.     <Connector port="8080" protocol="HTTP/1.1"  
  71.                connectionTimeout="20000"  
  72.                redirectPort="8443" />  
  73.     <!-- A "Connector" using the shared thread pool-->  
  74.     <!--  
  75.     <Connector executor="tomcatThreadPool"  
  76.                port="8080" protocol="HTTP/1.1"  
  77.                connectionTimeout="20000"  
  78.                redirectPort="8443" />  
  79.     -->  
  80.     <!-- Define a SSL HTTP/1.1 Connector on port 8443  
  81.          This connector uses the JSSE configuration, when using APR, the  
  82.          connector should be using the OpenSSL style configuration  
  83.          described in the APR documentation -->  
  84.     <!--  
  85.     <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"  
  86.                maxThreads="150" scheme="https" secure="true"  
  87.                clientAuth="false" sslProtocol="TLS" />  
  88.     -->  
  89.   
  90.     <!-- Define an AJP 1.3 Connector on port 8009 -->  
  91.     <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />  
  92.   
  93.   
  94.     <!-- An Engine represents the entry point (within Catalina) that processes  
  95.          every request.  The Engine implementation for Tomcat stand alone  
  96.          analyzes the HTTP headers included with the request, and passes them  
  97.          on to the appropriate Host (virtual host).  
  98.          Documentation at /docs/config/engine.html -->  
  99.   
  100.     <!-- You should set jvmRoute to support load-balancing via AJP ie :  
  101.     <Engine name="Catalina" defaultHost="localhost" jvmRoute="jvm1">  
  102.     -->  
  103.     <Engine name="Catalina" defaultHost="localhost" jvmRoute="tomcat1">  
  104.           
  105.         <Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"  
  106.                  channelSendOptions="8">  
  107.   
  108.           <Manager className="org.apache.catalina.ha.session.DeltaManager"  
  109.                    expireSessionsOnShutdown="false"  
  110.                    notifyListenersOnReplication="true"/>  
  111.   
  112.           <Channel className="org.apache.catalina.tribes.group.GroupChannel">  
  113.             <Membership className="org.apache.catalina.tribes.membership.McastService"  
  114.                         address="228.0.0.3"  
  115.                         port="45561"  
  116.                         frequency="500"  
  117.                         dropTime="3000"/>  
  118.             <Receiver className="org.apache.catalina.tribes.transport.nio.NioReceiver"  
  119.                       address="auto"  
  120.                       port="4501"  
  121.                       autoBind="100"  
  122.                       selectorTimeout="5000"  
  123.                       maxThreads="6"/>  
  124.   
  125.             <Sender className="org.apache.catalina.tribes.transport.ReplicationTransmitter">  
  126.               <Transport className="org.apache.catalina.tribes.transport.nio.PooledParallelSender"/>  
  127.             </Sender>  
  128.             <Interceptor className="org.apache.catalina.tribes.group.interceptors.TcpFailureDetector"/>  
  129.             <Interceptor className="org.apache.catalina.tribes.group.interceptors.MessageDispatch15Interceptor"/>  
  130.           </Channel>  
  131.   
  132.           <Valve className="org.apache.catalina.ha.tcp.ReplicationValve"  
  133.                  filter=""/>  
  134.           <Valve className="org.apache.catalina.ha.session.JvmRouteBinderValve"/>  
  135.   
  136.           <Deployer className="org.apache.catalina.ha.deploy.FarmWarDeployer"  
  137.                     tempDir="/tmp/war-temp/"  
  138.                     deployDir="/tmp/war-deploy/"  
  139.                     watchDir="/tmp/war-listen/"  
  140.                     watchEnabled="false"/>  
  141.   
  142.           <ClusterListener className="org.apache.catalina.ha.session.JvmRouteSessionIDBinderListener"/>  
  143.           <ClusterListener className="org.apache.catalina.ha.session.ClusterSessionListener"/>  
  144.         </Cluster>  
  145.   
  146.       <!--For clustering, please take a look at documentation at:  
  147.           /docs/cluster-howto.html  (simple how to)  
  148.           /docs/config/cluster.html (reference documentation) -->  
  149.   
  150.           <!-- 
  151.       <Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"/> 
  152. -->  
  153.   
  154.       <!-- Use the LockOutRealm to prevent attempts to guess user passwords  
  155.            via a brute-force attack -->  
  156.       <Realm className="org.apache.catalina.realm.LockOutRealm">  
  157.         <!-- This Realm uses the UserDatabase configured in the global JNDI  
  158.              resources under the key "UserDatabase".  Any edits  
  159.              that are performed against this UserDatabase are immediately  
  160.              available for use by the Realm.  -->  
  161.         <Realm className="org.apache.catalina.realm.UserDatabaseRealm"  
  162.                resourceName="UserDatabase"/>  
  163.       </Realm>  
  164.   
  165.       <Host name="localhost"  appBase="webapps"  
  166.             unpackWARs="true" autoDeploy="true">  
  167.   
  168.         <!-- SingleSignOn valve, share authentication between web applications  
  169.              Documentation at: /docs/config/valve.html -->  
  170.         <!-- 
  171.         <Valve className="org.apache.catalina.authenticator.SingleSignOn" /> 
  172.         -->  
  173.   
  174.         <!-- Access log processes all example.  
  175.              Documentation at: /docs/config/valve.html  
  176.              Note: The pattern used is equivalent to using pattern="common" -->  
  177.         <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"  
  178.                prefix="localhost_access_log." suffix=".txt"  
  179.                pattern="%h %l %u %t "%r" %s %b" />  
  180.   
  181.       </Host>  
  182.     </Engine>  
  183.   </Service>  
  184. </Server>  


 

tomcat2 的 server.xml

 

[html] view plaincopy
  1. <?xml version='1.0' encoding='utf-8'?>  
  2. <!--  
  3.   Licensed to the Apache Software Foundation (ASF) under one or more  
  4.   contributor license agreements.  See the NOTICE file distributed with  
  5.   this work for additional information regarding copyright ownership.  
  6.   The ASF licenses this file to You under the Apache License, Version 2.0  
  7.   (the "License"); you may not use this file except in compliance with  
  8.   the License.  You may obtain a copy of the License at  
  9.   
  10.       http://www.apache.org/licenses/LICENSE-2.0  
  11.   
  12.   Unless required by applicable law or agreed to in writing, software  
  13.   distributed under the License is distributed on an "AS IS" BASIS,  
  14.   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
  15.   See the License for the specific language governing permissions and  
  16.   limitations under the License.  
  17. -->  
  18. <!-- Note:  A "Server" is not itself a "Container", so you may not  
  19.      define subcomponents such as "Valves" at this level.  
  20.      Documentation at /docs/config/server.html  
  21.  -->  
  22. <Server port="9005" shutdown="SHUTDOWN">  
  23.   <!-- Security listener. Documentation at /docs/config/listeners.html  
  24.   <Listener className="org.apache.catalina.security.SecurityListener" />  
  25.   -->  
  26.   <!--APR library loader. Documentation at /docs/apr.html -->  
  27.   <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />  
  28.   <!--Initialize Jasper prior to webapps are loaded. Documentation at /docs/jasper-howto.html -->  
  29.   <Listener className="org.apache.catalina.core.JasperListener" />  
  30.   <!-- Prevent memory leaks due to use of particular java/javax APIs-->  
  31.   <Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener" />  
  32.   <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />  
  33.   <Listener className="org.apache.catalina.core.ThreadLocalLeakPreventionListener" />  
  34.   
  35.   <!-- Global JNDI resources  
  36.        Documentation at /docs/jndi-resources-howto.html  
  37.   -->  
  38.   <GlobalNamingResources>  
  39.     <!-- Editable user database that can also be used by  
  40.          UserDatabaseRealm to authenticate users  
  41.     -->  
  42.     <Resource name="UserDatabase" auth="Container"  
  43.               type="org.apache.catalina.UserDatabase"  
  44.               description="User database that can be updated and saved"  
  45.               factory="org.apache.catalina.users.MemoryUserDatabaseFactory"  
  46.               pathname="conf/tomcat-users.xml" />  
  47.   </GlobalNamingResources>  
  48.   
  49.   <!-- A "Service" is a collection of one or more "Connectors" that share  
  50.        a single "Container" Note:  A "Service" is not itself a "Container",  
  51.        so you may not define subcomponents such as "Valves" at this level.  
  52.        Documentation at /docs/config/service.html  
  53.    -->  
  54.   <Service name="Catalina">  
  55.   
  56.     <!--The connectors can use a shared executor, you can define one or more named thread pools-->  
  57.     <!--  
  58.     <Executor name="tomcatThreadPool" namePrefix="catalina-exec-"  
  59.         maxThreads="150" minSpareThreads="4"/>  
  60.     -->  
  61.   
  62.   
  63.     <!-- A "Connector" represents an endpoint by which requests are received  
  64.          and responses are returned. Documentation at :  
  65.          Java HTTP Connector: /docs/config/http.html (blocking & non-blocking)  
  66.          Java AJP  Connector: /docs/config/ajp.html  
  67.          APR (HTTP/AJP) Connector: /docs/apr.html  
  68.          Define a non-SSL HTTP/1.1 Connector on port 8080  
  69.     -->  
  70.       
  71.     <Connector port="9080" protocol="HTTP/1.1"  
  72.                connectionTimeout="20000"  
  73.                redirectPort="9443" />  
  74.                  
  75.     <!-- A "Connector" using the shared thread pool-->  
  76.     <!--  
  77.     <Connector executor="tomcatThreadPool"  
  78.                port="8080" protocol="HTTP/1.1"  
  79.                connectionTimeout="20000"  
  80.                redirectPort="8443" />  
  81.     -->  
  82.     <!-- Define a SSL HTTP/1.1 Connector on port 8443  
  83.          This connector uses the JSSE configuration, when using APR, the  
  84.          connector should be using the OpenSSL style configuration  
  85.          described in the APR documentation -->  
  86.     <!--  
  87.     <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"  
  88.                maxThreads="150" scheme="https" secure="true"  
  89.                clientAuth="false" sslProtocol="TLS" />  
  90.     -->  
  91.   
  92.     <!-- Define an AJP 1.3 Connector on port 8009 -->  
  93.     <Connector port="9009" protocol="AJP/1.3" redirectPort="9443" />  
  94.   
  95.   
  96.     <!-- An Engine represents the entry point (within Catalina) that processes  
  97.          every request.  The Engine implementation for Tomcat stand alone  
  98.          analyzes the HTTP headers included with the request, and passes them  
  99.          on to the appropriate Host (virtual host).  
  100.          Documentation at /docs/config/engine.html -->  
  101.   
  102.     <!-- You should set jvmRoute to support load-balancing via AJP ie :  
  103.     <Engine name="Catalina" defaultHost="localhost" jvmRoute="jvm1">  
  104.     -->  
  105.     <Engine name="Catalina" defaultHost="localhost" jvmRoute="tomcat2">  
  106.           
  107.         <Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"  
  108.                  channelSendOptions="8">  
  109.   
  110.           <Manager className="org.apache.catalina.ha.session.DeltaManager"  
  111.                    expireSessionsOnShutdown="false"  
  112.                    notifyListenersOnReplication="true"/>  
  113.   
  114.           <Channel className="org.apache.catalina.tribes.group.GroupChannel">  
  115.             <Membership className="org.apache.catalina.tribes.membership.McastService"  
  116.                         address="228.0.0.3"  
  117.                         port="45561"  
  118.                         frequency="500"  
  119.                         dropTime="3000"/>  
  120.             <Receiver className="org.apache.catalina.tribes.transport.nio.NioReceiver"  
  121.                       address="auto"  
  122.                       port="4501"  
  123.                       autoBind="100"  
  124.                       selectorTimeout="5000"  
  125.                       maxThreads="6"/>  
  126.   
  127.             <Sender className="org.apache.catalina.tribes.transport.ReplicationTransmitter">  
  128.               <Transport className="org.apache.catalina.tribes.transport.nio.PooledParallelSender"/>  
  129.             </Sender>  
  130.             <Interceptor className="org.apache.catalina.tribes.group.interceptors.TcpFailureDetector"/>  
  131.             <Interceptor className="org.apache.catalina.tribes.group.interceptors.MessageDispatch15Interceptor"/>  
  132.           </Channel>  
  133.   
  134.           <Valve className="org.apache.catalina.ha.tcp.ReplicationValve"  
  135.                  filter=""/>  
  136.           <Valve className="org.apache.catalina.ha.session.JvmRouteBinderValve"/>  
  137.   
  138.           <Deployer className="org.apache.catalina.ha.deploy.FarmWarDeployer"  
  139.                     tempDir="/tmp/war-temp/"  
  140.                     deployDir="/tmp/war-deploy/"  
  141.                     watchDir="/tmp/war-listen/"  
  142.                     watchEnabled="false"/>  
  143.   
  144.           <ClusterListener className="org.apache.catalina.ha.session.JvmRouteSessionIDBinderListener"/>  
  145.           <ClusterListener className="org.apache.catalina.ha.session.ClusterSessionListener"/>  
  146.         </Cluster>  
  147.   
  148.       <!--For clustering, please take a look at documentation at:  
  149.           /docs/cluster-howto.html  (simple how to)  
  150.           /docs/config/cluster.html (reference documentation) -->  
  151.       <!-- 
  152.       <Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"/> 
  153.       -->  
  154.   
  155.       <!-- Use the LockOutRealm to prevent attempts to guess user passwords  
  156.            via a brute-force attack -->  
  157.       <Realm className="org.apache.catalina.realm.LockOutRealm">  
  158.         <!-- This Realm uses the UserDatabase configured in the global JNDI  
  159.              resources under the key "UserDatabase".  Any edits  
  160.              that are performed against this UserDatabase are immediately  
  161.              available for use by the Realm.  -->  
  162.         <Realm className="org.apache.catalina.realm.UserDatabaseRealm"  
  163.                resourceName="UserDatabase"/>  
  164.       </Realm>  
  165.   
  166.       <Host name="localhost"  appBase="webapps"  
  167.             unpackWARs="true" autoDeploy="true">  
  168.   
  169.         <!-- SingleSignOn valve, share authentication between web applications  
  170.              Documentation at: /docs/config/valve.html -->  
  171.         <!-- 
  172.         <Valve className="org.apache.catalina.authenticator.SingleSignOn" /> 
  173.         -->  
  174.   
  175.         <!-- Access log processes all example.  
  176.              Documentation at: /docs/config/valve.html  
  177.              Note: The pattern used is equivalent to using pattern="common" -->  
  178.         <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"  
  179.                prefix="localhost_access_log." suffix=".txt"  
  180.                pattern="%h %l %u %t "%r" %s %b" />  
  181.   
  182.       </Host>  
  183.     </Engine>  
  184.   </Service>  
  185. </Server>  


 

实际测试过程中遇到的问题

网上资料很多描述说,<membership/>的监听端口如果是同一机器,各tomcat配置要区分开,我测试的实际情况是,设成不同端口tomcat之间session无法复制:

 

[html] view plaincopy
  1. <Membership className="org.apache.catalina.tribes.membership.McastService"  
  2.                         address="228.0.0.3"  
  3.                         port="45561"  
  4.                         frequency="500"  
  5.                         dropTime="3000"/>  
  6.             <Receiver className="org.apache.catalina.tribes.transport.nio.NioReceiver"  
  7.                       address="auto"  
  8.                       port="4501"  
  9.                       autoBind="100"  
  10.                       selectorTimeout="5000"  
  11.                       maxThreads="6"/>  


org.apache.catalina.tribes.membership.McastService的address和port在各tomcat里配置都必须完全相同,而Receiver的port,可以设为不同,如果相同,tomcat会自动区分开,设一个未被占用的端口。

 
(责任编辑:IT)
------分隔线----------------------------