On 9/11/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:

I'd like to set up several developers with their own development
environments (tomcat, and their apps) on the app server.

I'm not sure why this seems difficult, but maybe I don't understand
fully what you want to do :-)  In any case --

You have one app server, so you create a Tomcat instance for each
of Fred, Gina, and Bob. The instances have AJP connectors listening
on, respectively, ports 9001, 9101, 9201.

Then your balancer cluster looks something like:

<Proxy balancer://mytestcluster>
 BalancerMember ajp://testbox:9001 smax=10 loadfactor=10 route=TEST01
 BalancerMember ajp://testbox:9101 smax=10 loadfactor=10 route=TEST02
 BalancerMember ajp://testbox:9201 smax=10 loadfactor=10 route=TEST03
</Proxy>

This assumes using mod_proxy_ajp, because I've set that up for a
client recently, and haven't used mod_jk in years.  :-)

Anyway, does that address your use case?

--
Hassan Schroeder ------------------------ [EMAIL PROTECTED]

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to