Yes I think so...
Your best place for documentation is the JK Tomcat documentation on the subject.... both official and unofficial (google).

.... you need to also read the documentation... this is conceptual... but in essense

JkMount /TestRemoteIp/*  worker1
   Maps the relative URI to a worker
worker.worker1.port=8009
worker.worker1.host=localhost
worker.worker1.type=ajp13
   maps that to the tomcat connection port, domain and protocol

So in theory there is no problem as long ass you make sure that the Tomcats and Apache can all coexist on the server.
eg Apache port 80
Tomcat0 8080 connection port 8009
Tomcat1 8081 connection port 9009

So in actual fact you are mapping every single web-app to the desired Tomcat....

With very little modification to the above arrangement, you can do load sharing as well.... ie apache will round robin between Tomcats AND.... there is no reason why you cant have two apache's serving those tomcats as well.... ie full redundancy.

JK and Apache are pretty cool
Have fun



----- Original Message ----- From: "Brady Erickson" <[EMAIL PROTECTED]>
To: <[email protected]>
Sent: Monday, July 16, 2007 9:26 PM
Subject: [EMAIL PROTECTED] Can Apache front multiple instances of Tomcat


I am trying to determine if I can have Apache front multiple instances of Tomcat all running on the same box. The workers.properties file suggests that there is a single workers.tomcat_home. Any help would be greatly appreciated.

Thanks in advance!

Brady Erickson

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to