java - tomcat 6 horizontal clustering? -


please don't hesitate ask additional resource me , don't hesitate edit question.

my load balancing configuration be,

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=8009 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 session id's  # should routed same #tomcat worker.  worker.balancer.sticky_session =true 

in httpd.conf,

<ifmodule jk_module>  jkworkersfile conf/workers.properties jklogfile logs/mod_jk.log jkloglevel info  jkmount /myapplication balancer jkmount /myapplication/* balance  </ifmodule> 

i have tried configure tomcat 6 horizontal clustering(different machine tomcat instances) of resource http://www.easywayserver.com/implementation-tomcat-clustering.htm.

the load balancing works me.

but horizontal clustering not works me.

hope our stack members me.

good answers appreciated.


Comments

Popular posts from this blog

Java sticky instances of class com.mysql.jdbc.Field aggregating -