RE: I am trying to find the answer to this one for the last few days : Pl hep

2002-05-24 Thread Larry Isaacs



> -Original Message-
> From: Sankaranarayanan (Ganesh) Ganapathy 
> [mailto:[EMAIL PROTECTED]] 
> Sent: Friday, May 24, 2002 2:47 PM
> To: Tomcat Users List
> Subject: RE: I am trying to find the answer to this one for 
> the last few days : Pl hep
> 
> 
> Hi Larry,
> 
> Thanx for writing. 
> 
> I am just trying to understand from tomcat developers like 
> you if there is anything in the way Tomcat4.0.3 works today 
> that forbids such a configuration - why the official 
> configurations supported mandates that every tomcat instance 
> have its own base directory.

I'm not intimately familiar with the internals of Tomcat 4
and its batch files, but I suspect there are numerous pitfalls
to trying to have multiple instances of Tomcat 4 share
CATALINA_BASE subdirectories.  The documented form of running
multiple Tomcat 4 instances is supported because it is simplest
way for the multiple instances not to step on each other.
Documenting possible deviations from this isn't practical.  It
would be much harder to explain and it would be much easier for
users to encounter problems.  Thus, it isn't worth the
developer's time to pursue this as a feature beyond what has
already been done.

Cheers,
Larry

> 
> My configuration is simple - embedded tomcat supports stand 
> alone or ajp13 connector mode with global defaults(like 
> logger etc). All contexts are loaded with default properties 
> using ((Deployer)host).install method. 
> 
> your help is much appreciated.
> 
> Thanx
> Ganesh
> 
> 
> 
> -Original Message-
> From: Larry Isaacs [mailto:[EMAIL PROTECTED]]
> Sent: Friday, May 24, 2002 10:35 AM
> To: 'Tomcat Users List'
> Subject: RE: I am trying to find the answer to this one for 
> the last few
> days : Pl hep
> 
> 
> What is officially supported is documented in section 4 of
> the RUNNING.txt document:
> 
> <http://jakarta.apache.org/tomcat/tomcat-4.0-doc/RUNNING.txt>
> or
> <http://jakarta.apache.org/tomcat/tomcat-4.1-doc/RUNNING.txt>
> 
> If you want to deviate from this, I recommend you go ahead and
> try it.  Then post if you run into problems for which you can't
> find a workaround.  It is time consuming to predict what might
> go wrong based on what you might or might not attempt to do in
> your actual configuration.
> 
> Cheers,
> Larry
> 
> > -Original Message-
> > From: Sankaranarayanan (Ganesh) Ganapathy 
> > [mailto:[EMAIL PROTECTED]] 
> > Sent: Friday, May 24, 2002 1:09 PM
> > To: [EMAIL PROTECTED]
> > Subject: I am trying to find the answer to this one for the 
> > last few days : Pl hep
> > 
> > 
> > Hi All,
> > 
> > I am resending this mail for the nth time hoping to get an 
> > answers from the experts here.
> > 
> > Anyway my question is if the following is a supported config:
> > 
> > I want to run multiples instances of embedded Tomcat all 
> > against the same base directory. Is such a configuration supported?
> > 
> > Something like 
> > 
> > C:\tomcat>java -Dcatalina.home=c:\tomcat 
> > org.apache.catalina.startup.Catalina -config .\conf\server.xml start
> > C:\tomcat>java -Dcatalina.home=c:\tomcat 
> > org.apache.catalina.startup.Catalina -config 
> .\conf1\server.xml start
> > 
> > 1. Can all the instance work off the same web application 
> > files on disk - will there be any problem between the tomcat 
> > instances all sharing the same web application files on disk?
> > 
> > 2. Will there be a problem with the work directory. I cant 
> > seem to find an api to tell every embedded tomcat to use 
> > different directories.
> > 
> > Any help will be greatly appreciated!
> > 
> > Thanx
> > Ganesh
> > 
> > --
> > To unsubscribe, e-mail:   
> > <mailto:tomcat-user-> [EMAIL PROTECTED]>
> > For 
> > additional commands, 
> > e-mail: <mailto:[EMAIL PROTECTED]>
> > 
> 
> --
> To unsubscribe, e-mail:   
> <mailto:tomcat-user-> [EMAIL PROTECTED]>
> For 
> additional commands, 
> e-mail: <mailto:[EMAIL PROTECTED]>
> 
> 
> --
> To unsubscribe, e-mail:   
> <mailto:tomcat-user-> [EMAIL PROTECTED]>
> For 
> additional commands, 
> e-mail: <mailto:[EMAIL PROTECTED]>
> 

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




RE: I am trying to find the answer to this one for the last few days : Pl hep

2002-05-24 Thread Sankaranarayanan (Ganesh) Ganapathy

Hi Larry,

Thanx for writing. 

I am just trying to understand from tomcat developers like you if there is anything in 
the way Tomcat4.0.3 works today that forbids such a configuration - why the official 
configurations supported mandates that every tomcat instance have its own base 
directory.

My configuration is simple - embedded tomcat supports stand alone or ajp13 connector 
mode with global defaults(like logger etc). All contexts are loaded with default 
properties using ((Deployer)host).install method. 

your help is much appreciated.

Thanx
Ganesh



-Original Message-
From: Larry Isaacs [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 24, 2002 10:35 AM
To: 'Tomcat Users List'
Subject: RE: I am trying to find the answer to this one for the last few
days : Pl hep


What is officially supported is documented in section 4 of
the RUNNING.txt document:

<http://jakarta.apache.org/tomcat/tomcat-4.0-doc/RUNNING.txt>
or
<http://jakarta.apache.org/tomcat/tomcat-4.1-doc/RUNNING.txt>

If you want to deviate from this, I recommend you go ahead and
try it.  Then post if you run into problems for which you can't
find a workaround.  It is time consuming to predict what might
go wrong based on what you might or might not attempt to do in
your actual configuration.

Cheers,
Larry

> -Original Message-
> From: Sankaranarayanan (Ganesh) Ganapathy 
> [mailto:[EMAIL PROTECTED]] 
> Sent: Friday, May 24, 2002 1:09 PM
> To: [EMAIL PROTECTED]
> Subject: I am trying to find the answer to this one for the 
> last few days : Pl hep
> 
> 
> Hi All,
> 
> I am resending this mail for the nth time hoping to get an 
> answers from the experts here.
> 
> Anyway my question is if the following is a supported config:
> 
> I want to run multiples instances of embedded Tomcat all 
> against the same base directory. Is such a configuration supported?
> 
> Something like 
> 
> C:\tomcat>java -Dcatalina.home=c:\tomcat 
> org.apache.catalina.startup.Catalina -config .\conf\server.xml start
> C:\tomcat>java -Dcatalina.home=c:\tomcat 
> org.apache.catalina.startup.Catalina -config .\conf1\server.xml start
> 
> 1. Can all the instance work off the same web application 
> files on disk - will there be any problem between the tomcat 
> instances all sharing the same web application files on disk?
> 
> 2. Will there be a problem with the work directory. I cant 
> seem to find an api to tell every embedded tomcat to use 
> different directories.
> 
> Any help will be greatly appreciated!
> 
> Thanx
> Ganesh
> 
> --
> To unsubscribe, e-mail:   
> <mailto:tomcat-user-> [EMAIL PROTECTED]>
> For 
> additional commands, 
> e-mail: <mailto:[EMAIL PROTECTED]>
> 

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




RE: I am trying to find the answer to this one for the last few days : Pl hep

2002-05-24 Thread Larry Isaacs

What is officially supported is documented in section 4 of
the RUNNING.txt document:


or


If you want to deviate from this, I recommend you go ahead and
try it.  Then post if you run into problems for which you can't
find a workaround.  It is time consuming to predict what might
go wrong based on what you might or might not attempt to do in
your actual configuration.

Cheers,
Larry

> -Original Message-
> From: Sankaranarayanan (Ganesh) Ganapathy 
> [mailto:[EMAIL PROTECTED]] 
> Sent: Friday, May 24, 2002 1:09 PM
> To: [EMAIL PROTECTED]
> Subject: I am trying to find the answer to this one for the 
> last few days : Pl hep
> 
> 
> Hi All,
> 
> I am resending this mail for the nth time hoping to get an 
> answers from the experts here.
> 
> Anyway my question is if the following is a supported config:
> 
> I want to run multiples instances of embedded Tomcat all 
> against the same base directory. Is such a configuration supported?
> 
> Something like 
> 
> C:\tomcat>java -Dcatalina.home=c:\tomcat 
> org.apache.catalina.startup.Catalina -config .\conf\server.xml start
> C:\tomcat>java -Dcatalina.home=c:\tomcat 
> org.apache.catalina.startup.Catalina -config .\conf1\server.xml start
> 
> 1. Can all the instance work off the same web application 
> files on disk - will there be any problem between the tomcat 
> instances all sharing the same web application files on disk?
> 
> 2. Will there be a problem with the work directory. I cant 
> seem to find an api to tell every embedded tomcat to use 
> different directories.
> 
> Any help will be greatly appreciated!
> 
> Thanx
> Ganesh
> 
> --
> To unsubscribe, e-mail:   
>  [EMAIL PROTECTED]>
> For 
> additional commands, 
> e-mail: 
> 

--
To unsubscribe, e-mail:   
For additional commands, e-mail: