RE: Configuring Tomcat5/Apache2/JK2 for load balancing??

2003-03-28 Thread Kwong Chong
Hi, JkWorkersFile or JkMount are mod_jk directives, you need to use the equivalent mod_jk2 directives, something like : (jkmount equiv) [uri:/*.jsp] worker=lb:LB (jkworkersfile equiv) JkSet config:file /{path}/workers2.properties Kwong. -Original Message- From: Kevin Hartig [mailto:[E

RE: Infuriating port problem 80 - 8443 and 8008 - 8443

2003-03-26 Thread Kwong Chong
Perhaps some other process is already listening to port 80.. stop tomcat and try something like netstat -an | grep LISTEN and see if anything shows up as listening on port 80 Kwong. -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Wednesday, 26 March 2003 0:40 To: Tom

RE: RE : Lb_factor didn't work as expected

2003-03-24 Thread Kwong Chong
Hi there, Instead of worker.tomcat1.lbfactor=1 try worker.tomcat1.lb_factor=1 in any event, observer the jk2status page while your app is under load - it will help you understand what is happening. Kwong. -Original Message- From: LAGALISSE Eric [mailto:[EMAIL PROTECTED] Sent: Sunday, 23

RE: three tiers on three machines: Apache, Tomcat, DB

2003-03-13 Thread Kwong Chong
There is hope! I have been able to run up : multiple apache instances on one tier, talking to multiple tomcat instances on another tier, with a load balancer sitting in front of the websevers. using solaris 8, apache 2.0.43, tomcat 4.1.18 After you define your channels and workers, eg # Define

RE: Convenience on using apache+tomcat vs tomcat alone

2003-03-13 Thread Kwong Chong
Hi there, I guess it's fine if you are using one tomcat instance; You will need webserver(s) with mod jk/jk2 for loadbalancing and failover when using multiple instances Kwong. -Original Message- From: Simone Chiaretta [mailto:[EMAIL PROTECTED] Sent: Thursday, 13 March 2003 20:32 To: Tom

RE: Play the key "ctr + c" in any directions, the server(Tomcat4.x) will be shutdow

2003-03-12 Thread Kwong Chong
Try ./catalina.sh start & Kwong. -Original Message- From: deep blue [mailto:[EMAIL PROTECTED] Sent: Wednesday, 12 March 2003 13:58 To: [EMAIL PROTECTED] Subject: Play the key "ctr + c" in any directions, the server(Tomcat 4.x) will be shutdow I'm using Tomcat 4.x for soloris sparc. When

RE: Problems configuring Tomcat with Apache using mod_jk2

2003-03-04 Thread Kwong Chong
Looks like you need (assuming you don't already have) a [uri:/examples] worker= in your workers2.properties file to tell apache to forward such requests to tomcat.. hope this helps Kwong. -Original Message- From: David Godfrey [mailto:[EMAIL PROTECTED] Sent: Wednesday, 5 March 2003 3:3

RE: how can I disable directory listing at client side

2003-02-27 Thread Kwong Chong
:[EMAIL PROTECTED] Sent: Thursday, 27 February 2003 9:50 To: 'Tomcat Users List' Subject: RE: how can I disable directory listing at client side The listing maybe coming from tomcat itself. Make sure you disable tomcat directory listing as well. -Original Message----- From: K

RE: how can I disable directory listing at client side

2003-02-26 Thread Kwong Chong
Hmm I have a similar problem that's been bugging me - The way I normally disable directory listing is to remove the "Options Indexes" option from the Directory directive, ending up with Options FollowSymLinks AllowOverride None With apache running alone, this all works fine, if you tr

Re: Load Balanced Tomcat freezing under high load

2003-02-26 Thread Kwong Chong
Hi, this problem will probably be due partly to the round robin load balancing in the modjk2 connector, as well as the application trying to process too many requests at one time (context switching), if you are using the sun jdk1.4, that might cause problems as well. With round robin load balanci