tomcat设置没有什么可说的,关键是linux下的组播设置不熟悉好一番折腾,为免以后再走弯路所以笔记一下。
========如何开启tomcat cluster==============================================================================================
1、打开tomcat/conf/servr.xml
在<Engine name=...>节点下添加
<Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"
channelSendOptions="6">
<Manager className="org.apache.catalina.ha.session.BackupManager"
expireSessionsOnShutdown="false"
notifyListenersOnReplication="true"
mapSendOptions="6"/>
<!--
<Manager className="org.apache.catalina.ha.session.DeltaManager"
expireSessionsOnShutdown="false"
notifyListenersOnReplication="true"/>
-->
<Channel className="org.apache.catalina.tribes.group.GroupChannel">
<Membership className="org.apache.catalina.tribes.membership.McastService"
address="228.0.0.4"<!--组播地址-->
port="45564"<!--组播端口;通过address+port可以确定集群范围(可以借此细分集群)-->
frequency="500"
dropTime="3000"/>
<Receiver className="org.apache.catalina.tribes.transport.nio.NioReceiver"
address="192.168.1.49"<!--本地物理地址,尽量不要设置成127.0.0.1;-->
port="5000"<!--本地端口;如果在一个服务器上跑多个tomcat,记得此port值要有所区别-->
selectorTimeout="100"
maxThreads="6"/>
<Sender className="org.apache.catalina.tribes.transport.ReplicationTransmitter">
<Transport className="org.apache.catalina.tribes.transport.nio.PooledParallelSender"/>
</Sender>
<Interceptor className="org.apache.catalina.tribes.group.interceptors.TcpFailureDetector"/>
<Interceptor className="org.apache.catalina.tribes.group.interceptors.MessageDispatch15Interceptor"/>
<Interceptor className="org.apache.catalina.tribes.group.interceptors.ThroughputInterceptor"/>
</Channel>
<Valve className="org.apache.catalina.ha.tcp.ReplicationValve"
filter=".*\.gif|.*\.js|.*\.jpeg|.*\.jpg|.*\.png|.*\.htm|.*\.html|.*\.css|.*\.txt"/>
<Deployer className="org.apache.catalina.ha.deploy.FarmWarDeployer"
tempDir="/tmp/war-temp/"
deployDir="/tmp/war-deploy/"
watchDir="/tmp/war-listen/"
watchEnabled="false"/>
<ClusterListener className="org.apache.catalina.ha.session.ClusterSessionListener"/>
</Cluster>
servier.xml中已有默认的<Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"/>,它定义了一个默认的cluster,取消注释即可发挥作用。
关于tomcat cluster的详细设置可以参考tomcat文档:docs/cluster-howto.html
2、打开要复制应用的web.xml(WEB_INF/web.xml):
添加<distributable/>节点;
3、ok,enjoy it!
=============================================================================================================================
========关于服务器组播的支持=================================================================================================
由于cluster使用broadcast通信,所以要保证支持服务器支持多播。具体的操作方式如下:
1、确定是否支持组播:
a、ubuntu10.04下内核默认开启组播,可以用“ifconfig eht1”检查,如果存在“MULTICAST MTU:1500”字样即无需重新编译内核;否则需要重新编译kernel;
b、window下默认支持组播,无需附加设置;
2、针对使用的网络设备手动添加路由规则:
route add -net 224.0.0.0 netmask 240.0.0.0 dev eth1
route add -net 224.0.0.0 netmask 240.0.0.0 dev lo
不要忘记local,我就是在这里浪费时间了。
=============================================================================================================================
===================================================
如何测试广播是否运行:
下载:http://cvs.apache.org/~fhanik/tomcat-replication.jar (提供下载 )
测试一下广播
java -cp tomcat-replication.jar MCaster 224.0.0.1 45564 Terminal1
java -cp tomcat-replication.jar MCaster 224.0.0.1 45564 Terminal2
如果不报错则能正常广播
===================================================
=============================================================================================================================
测试环境: window7+tomcat7.0.26+jdk1.6
ubuntu10.04+tomcat7.0.26+jdk1.6
=============================================================================================================================