Well, >From what you said it seems that you were able to setup IIS to work with only one Tomcat, either the other one is present or not.
>From the link I've sent you, you only have to look at the way workers.properties is made. You have to make two workers, let's say tomcat1 and tomcat2 and another one, the loadbalancer. Then, make IIS forward everything to the loadbalancer. For this, in you uriworkermap.properties, define something like this: /test/*=loadbalancer and in your workers.properties ps=/ worker.list=tomcat1, tomcat2, loadbalancer worker.tomcat1.port=8009 worker.tomcat1.host=localhost worker.tomcat1.type=ajp13 worker.tomcat1.lbfactor=100 worker.tomcat2.port=8010 worker.tomcat2.host=localhost worker.tomcat2.type=ajp13 worker.tomcat2.lbfactor=100 worker.loadbalancer.type=lb worker.loadbalancer.balanced_workers=tomcat1, tomcat2 If in your $CATALINA_HOME\conf\server.xml you have a context with a path of "/test", all requests coming to http://localhost/path/<whatever> will go to one of the tomcats. I can't tell you which one in which order, but they will. The only test that I did (and it worked) is the one they suggested, with the index page colored red and blue, and after starting several browsers pretty fast, I got both red and blue pages. So, it works in the way they suggest there. The link again: http://www.ubeans.com/tomcat/ E. -----Original Message----- From: yuval [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 16, 2003 9:50 PM To: Tomcat Users List; [EMAIL PROTECTED] Subject: Re: How do i run 2 tomcats on the same server and using jk2? Do you have a soulotion to my problem? > Subject: How do i run 2 tomcats on the same server and using jk2? > > Hi, > > I installed 2 Tomcats on the same server and they both work on on port 8080 > and the second on 8081 > I also define one to listen for the jk2 on 8009 and the second on 8010 but > only the first one is working > > What do i need to do in the registry and in the IIS in order to make the > second work also? > > > Regards, > > Yuval ----- Original Message ----- From: "The Bean" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Tuesday, December 16, 2003 9:40 PM Subject: RE: How do i run 2 tomcats on the same server and using jk2? > Not a bad link, but I have to comment on the guys suggestion about changing > the catalina.sh script. Here's a quote: > > "In my many years of consulting, I have learned not to rely on environment variables > which can be unset by ignorant or malicious people" > > In my many years of consulting, I've much more often encountered problems > with people tampering with script files that should have been left alone. Ever do > an export JAVA_HOME= to explicitly pick a JVM and be stumped by a bug still happening > . . . only to find out that someone took at upon themselves to change a script that > you know well, and to manually set JAVA_HOME withing that script? This much more > sinister than missing environment variables. > > If you're very afraid of environment variables not being there or being wrong, then > make a script file that sets a few variables and then calls the original script. Or some > variant of that. But just jumping in and altering the script is rarely the best idea. > > - T.B. > > --- "Cocalea, Eugen" <[EMAIL PROTECTED]> wrote: > > Heh, seem that people around here knock on the same problems I had few days > > ago. Best solution, found on: > > > > http://www.ubeans.com/tomcat/ > > > __________________________________ > Do you Yahoo!? > New Yahoo! Photos - easier uploading and sharing. > http://photos.yahoo.com/ > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
