我已配置HttpServer2.2
以实现我的java应用程序的load balancing
和Clustering
。
但Load Balancing
工作正常且Clustering(session replication)
不起作用。
我worker.properties
中的HttpServer
将是,
workers.java_home=C:/Program Files/Java/jdk1.6.0_25
#worker.list=worker1,worker2
worker.list=balancer
worker.worker1.port=8009
worker.worker1.host=localhost
worker.worker1.type=ajp13
worker.worker1.lbfactor=1
worker.worker2.port=8019
worker.worker2.host=192.168.100.84
worker.worker2.type=ajp13
worker.worker2.lbfactor=1
worker.balancer.type=lb
worker.balancer.balance_workers=worker1,worker2
worker.balancer.method=B
# Specifies whether requests with SESSION ID's
# should be routed back to the same #Tomcat worker.
worker.balancer.sticky_session =True
,httpd.conf
将是,
<IfModule jk_module>
JkWorkersFile conf/workers.properties
JkLogFile logs/mod_jk.log
JkLogLevel info
JkMount /CustomerChat_V1.02.00 balancer
JkMount /CustomerChat_V1.02.00/* balance
</IfModule>
在我的server.xml
Tomcat one
,
<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.8"
port="45564"
frequency="500"
dropTime="3000" />
<Receiver className="org.apache.catalina.tribes.transport.nio.NioReceiver"
address="auto"
port="4200"
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=".*\.gif;.*\.js;.*\.jpg;.*\.htm;.*\.html;.*\.txt;" />
<Deployer className="org.apache.catalina.ha.deploy.FarmWarDeployer"
tempDir="D:/cluster/temp/war-temp/"
deployDir="D:/cluster/temp/war-deploy/"
watchDir="D:/cluster/temp/war-listen/"
watchEnabled="false" />
<ClusterListener className="org.apache.catalina.ha.session.JvmRouteSessionIDBinderListener"/>
<ClusterListener className="org.apache.catalina.ha.session.ClusterSessionListener"/>
</Cluster>
在我的server.xml
Tomcat two
,
<Receiver className="org.apache.catalina.tribes.transport.nio.NioReceiver"
address="192.168.0.1"
port="4100"
autoBind="100"
selectorTimeout="5000"
maxThreads="6" />
但仍有问题。
当我关闭Tomcat one
时,新请求将自动转到tomcat two
。但是Tomcat two
不知道当前用户状态和他存储的应用程序的会话对象。
肯定赞赏好的答案。
答案 0 :(得分:5)
一些意见/建议
修改强>
在您的配置中,您提到
worker.balancer.sticky_session =True
这将使HttpServer将所有请求发送到第一次创建会话的tomcat(会话粘贴到该服务器,因此名称为粘性会话)。这会破坏会话群集的目的。请将此设置为false。
答案 1 :(得分:0)
可以使用基于 Redis 的 Tomcat Session clustering 作为很好的替代方案。配置所需的工作量要少得多。
首先,添加会话管理器您的 context.xml 文件:
<Manager className="org.redisson.tomcat.RedissonSessionManager"
configPath="${catalina.base}/redisson.yaml"
readMode="MEMORY" updateMode="DEFAULT"/>
第二,创建 redisson.yaml 配置文件:
singleServerConfig:
address: "redis://my-redis:6379"
第三,将 Redisson 项目中的两个 jar 复制到 TOMCAT_BASE/lib 目录中:
redisson-all-3.16.1.jar
对于 Tomcat 7.x - redisson-tomcat-7-3.16.1.jar
对于 Tomcat 8.x - redisson-tomcat-8-3.16.1.jar
对于 Tomcat 9.x - redisson-tomcat-9-3.16.1.jar
对于 Tomcat 10.x - redisson-tomcat-10-3.16.1.jar