>The next thing I will try is native tomcat.  also, what do I 
>need to do to
>run two tomcat servers for load
>balancing?
>

Easy :

worker.list=asterix, obelix

worker.asterix.port=8009
worker.asterix.host=asterix.gaule.org
worker.asterix.type=ajp13

worker.obelix.port=8009
worker.obelix.host=obelix.gaule.org
worker.obelix.type=ajp13

worker.loadbalancer.type=lb
worker.loadbalancer.balanced_workers=asterix, obelix


Then is mod_jk.conf replace all refs to worker lb :

<IfModule mod_jk.c>

JkWorkersFile /etc/httpd/conf/workers.properties
JkLogFile  /var/log/httpd/jk.log
JkLogLevel warn
JkMount /*.jsp lb
JkMount /servlet/* lb
JkMount /examples/* lb

</IfModule>


Regards

Reply via email to