Tomcat Session Replication Cluster:
(1) 配置启用集群,将下列配置放置于<engine>或<host>中;
如何配置会话集群: (在负载均衡实验的基础上做的)
在第一台tomcat主机上
vim /etc/tomcat/server.xml (tomcat服务器下的配置文件)
将下面的内容放到一个host主机设定的内部。(这种设置只符合后台有三五台tomcat,过多的后台服务器不合适使用此方法,会造成对带宽资源的消耗,速度慢)
<Cluster className=”org.apache.catalina.ha.tcp.SimpleTcpCluster”
channelSendOptions=”8″>
<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.119″
port=”45564″
frequency=”500″
dropTime=”3000″/>
<Receiver className=”org.apache.catalina.tribes.transport.nio.NioReceiver”
address=”192.168.60.21″ (输入各自主机的地址)
port=”4000″
autoBind=”100″
selectorTimeout=”5000″
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”/>
</Channel>
<Valve className=”org.apache.catalina.ha.tcp.ReplicationValve”
filter=””/>
<Valve className=”org.apache.catalina.ha.session.JvmRouteBinderValve”/>
<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.JvmRouteSessionIDBinderListener”/>
<ClusterListener className=”org.apache.catalina.ha.session.ClusterSessionListener”/>
</Cluster>
还需要添加此行的内容:
<Engine name=”Catalina” defaultHost=”localhost” jvmRoute=”TcB”>
cd /data/test/ROOT/进入自定义的主页路径下;
mkdir WEB-INF (创建此文件夹)
cp /etc/tomcat/web.xml WEB-INF/ (复制系统的模板文件到刚才创建的文件夹下面)
vim WEB-INF/web.xml
在tomcat2上做上面相同的操作就可以了
在浏览器上访问:就可以实现会话绑定了。
本文来自投稿,不代表Linux运维部落立场,如若转载,请注明出处:http://www.178linux.com/103153