You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by Vinay Menon <ja...@vinay.org.uk> on 2001/07/09 11:54:26 UTC

Multiple Workers for a url

Hello,
         When configuring workers.properties with multiple ajp13 workers

1. My worker list is
worker.list=ajp12, ajp13, local

2. The workers have been defined as
worker.ajp12.port=8007
worker.ajp12.host=localhost
worker.ajp12.type=ajp12
worker.ajp12.lbfactor=1

worker.ajp12.port=8009
worker.ajp12.host=10.1.1.10
worker.ajp12.type=ajp12
worker.ajp12.lbfactor=1

worker.local.port=8009
worker.local.host=localhost
worker.local.type=ajp13
worker.local.lbfactor=1

3. If I have a mapping  in my JkMount /servlet/* ajp13 I guess it forwards
all requests to the worker 'named' ajp13. What if I want to load balance
between the workers named ajp13 and local?

Many thanks

Vinay