Re: Two separate instances of Tomcat running on a single Windows 2003 server.

2008-03-12 Thread Panian, Ardo
Ok, the default server.xml is where I make the server port adjustments? What about environmental-variables that are set in the System Properties of the Windows server? I am asked to set Catalina_Home=Tomcat install directory path, what would I do with two installs of tomcat? I will need to

RE: Two separate instances of Tomcat running on a single Windows 2003 server.

2008-03-12 Thread Peter Crowther
From: Panian, Ardo [mailto:[EMAIL PROTECTED] Ok, the default server.xml is where I make the server port adjustments? Yes. What about environmental-variables that are set in the System Properties of the Windows server? In the immortal words, don't do that. Are you running these installs as

Re: Two separate instances of Tomcat running on a single Windows 2003 server.

2008-03-12 Thread Panian, Ardo
Unfortunately I have to install it as a windows service, any guidance on how I can achieve this goal would be much appreciated. I was planning on installing Tomcat twice with each going to a different install directory. I know that the env-var looks in the install dir of Tomcat, but with two

RE: Two separate instances of Tomcat running on a single Windows 2003 server.

2008-03-12 Thread Caldarale, Charles R
From: Panian, Ardo [mailto:[EMAIL PROTECTED] Subject: Re: Two separate instances of Tomcat running on a single Windows 2003 server. Unfortunately I have to install it as a windows service Use the .zip, not .exe, version of the Tomcat download. Install into two different directories

Re: Two separate instances of Tomcat running on a single Windows 2003 server.

2008-03-12 Thread Panian, Ardo
[mailto:[EMAIL PROTECTED] Subject: Re: Two separate instances of Tomcat running on a single Windows 2003 server. Unfortunately I have to install it as a windows service Use the .zip, not .exe, version of the Tomcat download. Install into two different directories, as you described. Edit

RE: Two separate instances of Tomcat running on a single Windows 2003 server.

2008-03-12 Thread Caldarale, Charles R
From: Panian, Ardo [mailto:[EMAIL PROTECTED] Subject: Re: Two separate instances of Tomcat running on a single Windows 2003 server. What about this line in the server.xml: Service name=Catalina can both instances have the same name? Yes, the service name is internal to the process

Two separate instances of Tomcat running on a single Windows 2003 server.

2008-03-11 Thread Panian, Ardo
Is it possible (and I am sure that it is) to have two separate instances of Tomcat running on a single Windows 2003 server, and connected through the ISAPI redirector to IIS running on the local system. If so could you please guide me in the right direction? Thanks

Re: Two separate instances of Tomcat running on a single Windows 2003 server.

2008-03-11 Thread David kerber
Panian, Ardo wrote: Is it possible (and I am sure that it is) to have two separate instances of Tomcat running on a single Windows 2003 server, and connected through the ISAPI redirector to IIS running on the local system. If so could you please guide me in the right direction? Thanks Your

Re: Two separate instances of Tomcat running on a single Windows 2003 server.

2008-03-11 Thread Panian, Ardo
: Is it possible (and I am sure that it is) to have two separate instances of Tomcat running on a single Windows 2003 server, and connected through the ISAPI redirector to IIS running on the local system. If so could you please guide me in the right direction? Thanks Your tomcats need

Re: Two separate instances of Tomcat running on a single Windows 2003 server.

2008-03-11 Thread David Smith
two instances running on 8180,8280, and 8105,8205 and so on this is all I would need to do? On Tue, Mar 11, 2008 at 1:21 PM, David kerber [EMAIL PROTECTED] wrote: Panian, Ardo wrote: Is it possible (and I am sure that it is) to have two separate instances of Tomcat running

RE: Two separate instances of Tomcat running on a single Windows 2003 server.

2008-03-11 Thread Peter Crowther
From: Panian, Ardo [mailto:[EMAIL PROTECTED] Out of the box Tomcat uses ports 8080, 8005, and 8009? is that correct? With the default server.xml, yes. You'll probably want only one of 8009/8080 depending on how you intend to connect to Tomcat. If you're connecting from IIS, you probably

Re: Two separate instances of Tomcat running on a single Windows 2003 server.

2008-03-11 Thread Panian, Ardo
My intentions were to have two separate installs, and the from there having them run independent of each other. They will be host two separate web based applications. essentially its the same application but two instances of it. On Tue, Mar 11, 2008 at 1:38 PM, Peter Crowther [EMAIL PROTECTED]