Re: TOMCAT CLUSTERING HOWTO

2008-05-09 Thread karthikn
Hi Sorry for the delay and Thx for reply ALL i was saying is i have 2 independent TOMCATS running on a windows2000 machine c:\TOMCAT1 startup 8080 shutdown = 8090 d:\TOMCAT2 startup 8081 shutdown = 8091 JDK is as below d:/java/jdk163 I have already done the changes to server.xml for

Re: TOMCAT CLUSTERING HOWTO

2008-05-09 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Karthik, karthikn wrote: | ALL i was saying is i have 2 independent TOMCATS running on a | windows2000 machine | | c:\TOMCAT1 startup 8080 shutdown = 8090 Tomcat does not have startup ports. Do you mean that you have a connector listening on port

Re: TOMCAT CLUSTERING HOWTO

2008-05-09 Thread Hassan Schroeder
| Do i need to set up Load balancer to test the clustering ONLY ? I'm not sure how you would even use your cluster, much less test it, without a load balancer. Absolutely. And the most confidence-inspiring (and pointy-haired-boss-impressing) test is to access your cluster through a load

Re: TOMCAT CLUSTERING HOWTO

2008-05-09 Thread karthikn
Hi Sorry for the delay and Thx for reply Tomcat does not have startup ports. Yes I have set the 2 Independent TOMCAT's at 8080 and 8081 !-- Define a non-SSL HTTP/1.1 Connector on port 8080 -- Before you worry about clustering, can you even get a single request handled by Tomcat? I

Re: TOMCAT CLUSTERING HOWTO

2008-05-09 Thread Hassan Schroeder
On Fri, May 9, 2008 at 8:03 AM, karthikn [EMAIL PROTECTED] wrote: Some body on the Form told me , Set up the cluster before applying load balancing and Test the cluster's setup as following deploy/undeploy your apps only to one server, and the cluster will distribute the

Re: TOMCAT CLUSTERING HOWTO

2008-05-08 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 To whom it may concern, karthikn wrote: | As per TOMCAT CLUSTERING HOWTO documents | I am trying clustering on 2 TOMCAT 5.5.23 on WINDOWS OS sharing the | same JVM 1.6 What are you using to split traffic between these two instances? It does not

Re: TOMCAT CLUSTERING HOWTO

2008-05-08 Thread karthikn
Hi Sorry for delay and Thx for the reply I'm certainly confused as to why you would run two Tomcats on the same JVM. First of all, how did you do that? Are you using Tomcat embedded or something? Yes I have 2 TOMCAT individual running on same Windows2000 Machine sharing the same JVM with

Re: TOMCAT CLUSTERING HOWTO

2008-05-08 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Karthik, karthikn wrote: | Yes I have 2 TOMCAT individual running on same Windows2000 | Machine sharing the same JVM with Startup / Shutdown Ports,but not | embedded. Can you explain how to start two Tomcat instances in a single JVM? | Would this

RE: TOMCAT CLUSTERING HOWTO

2008-05-08 Thread Caldarale, Charles R
From: Christopher Schultz [mailto:[EMAIL PROTECTED] Subject: Re: TOMCAT CLUSTERING HOWTO Can you explain how to start two Tomcat instances in a single JVM? I suspect the OP means one JVM installation as opposed to one JVM instance. (He seems a bit, shall we say, terminology challenged

Re: TOMCAT CLUSTERING HOWTO

2008-05-08 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Chuck, Caldarale, Charles R wrote: | Clustering does not work without a load balancer. Period. | | Not strictly true. Clustered Tomcats don't care if the requests are | coming through a load balancer or someone manually changing port or | IP

Re: TOMCAT CLUSTERING HOWTO

2008-05-07 Thread Landon Fabbricino
Helly Karthikn, I am confused as to where you are having problems? I am not sure what you mean by How to test TOMCAT CLUSTERING with out Load balancer? What exactly are you trying to do with your two tomcat machines? Landon Fabbricino IT Applications Phone: 403.225.7515 Fax: 403.225.7604

Re: TOMCAT CLUSTERING HOWTO

2008-05-07 Thread karthikn
Hi As per TOMCAT CLUSTERING HOWTO documents I am trying clustering on 2 TOMCAT 5.5.23 on WINDOWS OS sharing the same JVM 1.6 with the parameters as below TC1 TC2 Startup 80818082 ShutDown 80078008 APJ

Re: TOMCAT CLUSTERING HOWTO

2008-05-06 Thread karthikn
Hi How to test TOMCAT CLUSTERING with out Load balancer As Per the Tomcat 5.5.23 Cluster HowTo Documents I have only tried to Cluster 2 TOMCATS on SAME Machine , Sharing same JVM. but not able to SAMPLE TEST the clustering Am i on doing some thing wrong in here.? Please Some body

Re: TOMCAT CLUSTERING HOWTO

2008-05-05 Thread karthikn
Hi How to test TOMCAT CLUSTERING with out Load balancer As Per the Tomcat 5.5.23 Cluster HowTo Documents I have only tried to Cluster 2 TOMCATS on SAME Machine , Sharing same JVM. but not able to test the clustering Am i on doing some thing wrong in here.? with regards Karthik

Re: TOMCAT CLUSTERING HOWTO

2008-05-02 Thread karthikn
Hi Apache contains the logic to handle the load balancing between the two tomcats: As per the Documents tomcat-docs/cluster-howto.html* *I have only tried to achieve Clustering of 2 TOMCAT's on a single MACHINE, JVM My Primary Objective was to check if the war deployed / undeployed on

Re: TOMCAT CLUSTERING HOWTO

2008-05-01 Thread Landon Fabbricino
I honestly have not tried clustering tomcat without Apache before. Just recently I set up a server farm with apache on one server and tomcat on two other servers (so 3 physical machines) Apache contains the logic to handle the load balancing between the two tomcats: jk.conf JkWorkersFile

Re: TOMCAT CLUSTERING HOWTO

2008-04-30 Thread karthikn
Hi distributable/ I have already added the same in my application's web.xml, but still no improvement. with regards Karthik Landon Fabbricino wrote: If I am not mistaken, you will need to add the following tag to your web.xml CATALINA_HOME/webapps/your_app_name/WEB-INF/web.xml !--

Re: TOMCAT CLUSTERING HOWTO

2008-04-30 Thread karthikn
Hi Any more suggestions ? with regards Karthik karthikn wrote: Hi distributable/ I have already added the same in my application's web.xml, but still no improvement. with regards Karthik Landon Fabbricino wrote: If I am not mistaken, you will need to add the following tag to

Re: TOMCAT CLUSTERING HOWTO

2008-04-30 Thread Landon Fabbricino
Could you provide your apache's worker.properties file? karthikn [EMAIL PROTECTED] 4/30/2008 8:05:02 AM Hi Any more suggestions ? with regards Karthik karthikn wrote: Hi distributable/ I have already added the same in my application's web.xml, but still no improvement. with

Re: TOMCAT CLUSTERING HOWTO

2008-04-30 Thread karthikn
Hi As Per the Tomcat 5.5.23 Cluster HowTo Documents I have only tried to Cluster 2 TOMCATS on SAME Machine , Sharing same JVM. Could you provide your apache's worker.properties file? I have so far not used any APACHE Http Server for Load Balancing with regards Karthik Landon

Re: TOMCAT CLUSTERING HOWTO

2008-04-29 Thread Landon Fabbricino
If I am not mistaken, you will need to add the following tag to your web.xml CATALINA_HOME/webapps/your_app_name/WEB-INF/web.xml !-- Required for session-replication in clustering mode -- distributable/ Landon Fabbricino IT Applications Phone: 403.225.7515 Fax: 403.225.7604 [EMAIL

Re: TOMCAT CLUSTERING HOWTO

2008-04-28 Thread karthikn
Hi Somebody Please Help me with this form with regards Karthik karthikn wrote: Hi I have few Questions which i was not able to get TOMCAT CLUSTERING HOWTO and form. a) Clustering 1) Do we need to deploy the war files on each individual Tomcat when joined the clustering.

Re: TOMCAT CLUSTERING HOWTO

2008-04-28 Thread Mark Thomas
karthikn wrote: Hi Somebody Please Help me with this form http://wiki.apache.org/tomcat/FAQ/Tomcat_User#Q2 Mark - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: TOMCAT CLUSTERING HOWTO

2008-04-28 Thread karthikn
Hi The Following was done for the Clustering (2 tomcats ) Values TOMCAT5523_ITOMCAT5523_II Startup 80818082 ShutDown80078008 APJ 80098010 TCP Listener40014002 tcpListenAddressautoauto jvmRoute