Re: Apache2/Tomcat5/mod_jk2 problems

2004-05-11 Thread Adrian Barnett
On Wed, 12 May 2004 00:05:09 +0800, Chong Yu Meng <[EMAIL PROTECTED]> wrote: Hi, Another way to verify if the connectors are really giving you the problems (as opposed to the application) is to setup Apache as a reverse proxy and proxy all requests to Tomcat. There is documentation on this on the

Re: Apache2/Tomcat5/mod_jk2 problems

2004-05-11 Thread Chong Yu Meng
Hi, Another way to verify if the connectors are really giving you the problems (as opposed to the application) is to setup Apache as a reverse proxy and proxy all requests to Tomcat. There is documentation on this on the Tomcat site. My suspicion is that it could be your application. Daniel

Re: Apache2/Tomcat5/mod_jk2 problems

2004-05-11 Thread QM
On Tue, May 11, 2004 at 11:05:34AM +0100, Adrian Barnett wrote: : After trying numerous different things, suspicion falls on mod_jk2. The : docs on mod_jk2 are not very helpful. Some say that mod_jk2 is better than : mod_jk and should be used in place of it, others say that mod_jk2 is not : stab

Re: Apache2/Tomcat5/mod_jk2 problems

2004-05-11 Thread Daniel Gibby
I *really* wish I knew the answers to your questions. Connectors are the most frustrating part of using tomcat. But then again, I haven't tried session replication ;-) I don't know if the problem that I'm having is the same as yours, but I have to kill and restart tomcat every other day or so.

Apache2/Tomcat5/mod_jk2 problems

2004-05-11 Thread Adrian Barnett
Hi, I'm having an annoying memory leak problem in tomcat5 on Redhat 9. The memory gradually creeps up until the JVM runs out of memory. (I've been using JMeter to send thousands of requests to tomcat) Now, if I run the tests against tomcat by itself (via port 8080) it is fine and stable, the prob

RE: mod_jk2 problems

2004-03-11 Thread Yiannis Mavroukakis
It shouldn't, but if you are worried you install it in a directory out of the way, and link jk2 against it. -Original Message- From: Vi [mailto:[EMAIL PROTECTED] Sent: 11 March 2004 09:38 To: Tomcat Users List Subject: Re: mod_jk2 problems Yes, I already found it, but should I in

Re: mod_jk2 problems

2004-03-11 Thread Vi
04 17:37 To: Tomcat Users List Subject: Re: mod_jk2 problems Yes, probably some lib(s), which were not linked corectly with mod_jk2 while compiling it? What's apr? Yiannis Mavroukakis wrote: If memory serves me right, the apache httpd sources and the apr sources. -Original Message

RE: mod_jk2 problems

2004-03-11 Thread Yiannis Mavroukakis
http://apr.apache.org/ -Original Message- From: Vi [mailto:[EMAIL PROTECTED] Sent: 10 March 2004 17:37 To: Tomcat Users List Subject: Re: mod_jk2 problems Yes, probably some lib(s), which were not linked corectly with mod_jk2 while compiling it? What's apr? Yiannis Mavroukakis

Re: mod_jk2 problems

2004-03-10 Thread Robert Hall
ailto:[EMAIL PROTECTED] Sent: 10 March 2004 17:17 To: Tomcat Users List Subject: Re: mod_jk2 problems Oh, yes! Thanks! Here is what missing: undefined symbol: ap_scoreboard_image (./mod_jk2.so) undefined symbol: ap_server_root(./mod_jk2.so) undefined symbol: apr_pool_cleanup_null (./mod_j

Re: mod_jk2 problems

2004-03-10 Thread Vi
the apache httpd sources and the apr sources. -Original Message- From: Vi [mailto:[EMAIL PROTECTED] Sent: 10 March 2004 17:17 To: Tomcat Users List Subject: Re: mod_jk2 problems Oh, yes! Thanks! Here is what missing: undefined symbol: ap_scoreboard_image (./mod_jk2.so) undefi

Re: mod_jk2 problems

2004-03-10 Thread Vi
17 To: Tomcat Users List Subject: Re: mod_jk2 problems Oh, yes! Thanks! Here is what missing: undefined symbol: ap_scoreboard_image (./mod_jk2.so) undefined symbol: ap_server_root(./mod_jk2.so) undefined symbol: apr_pool_cleanup_null (./mod_jk2.so) undefined symbol: apr_socket_c

RE: mod_jk2 problems

2004-03-10 Thread Yiannis Mavroukakis
If memory serves me right, the apache httpd sources and the apr sources. -Original Message- From: Vi [mailto:[EMAIL PROTECTED] Sent: 10 March 2004 17:17 To: Tomcat Users List Subject: Re: mod_jk2 problems Oh, yes! Thanks! Here is what missing: undefined symbol: ap_scoreboard_image

Re: mod_jk2 problems

2004-03-10 Thread Vi
15:24 To: Tomcat Users List Subject: Re: mod_jk2 problems ldd, is good, but I ment something to show me all functions of a lib. libc.so.6 => /lib/i686/libc.so.6 (0x4200) /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x8000) Obviously those two are not enough Fr

RE: mod_jk2 problems

2004-03-10 Thread Yiannis Mavroukakis
try ldd -v -r /etc/httpd/modules/mod_jk2.so If there are any missing objects or functions it will report them to you. -Original Message- From: Vi [mailto:[EMAIL PROTECTED] Sent: 10 March 2004 15:24 To: Tomcat Users List Subject: Re: mod_jk2 problems ldd, is good, but I ment

Re: mod_jk2 problems

2004-03-10 Thread Vi
ldd, is good, but I ment something to show me all functions of a lib. libc.so.6 => /lib/i686/libc.so.6 (0x4200) /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x8000) Obviously those two are not enough Francois JEANMOUGIN wrote: it compiled well, but can't load. Is there any util to

RE: mod_jk2 problems

2004-03-10 Thread Francois JEANMOUGIN
> it compiled well, but can't load. Is there any util to see all symbols > of library? Try ldd : $ ldd mod_jk.so libc.so.6 => /lib/i686/libc.so.6 (0x4200) /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x8000) Nothing obvious :). François. --

Re: mod_jk2 problems

2004-03-10 Thread Vi
ubject: RE: mod_jk2 problems Well great, you took the httpd sources, got the library out of them but your httpd is probably running a binary which was not compiled against the sources you just used :). I found that the following makefile works well for RH9 ./configure -C --prefix=/etc/httpd --e

RE: mod_jk2 problems

2004-03-10 Thread Yiannis Mavroukakis
I meant to say ./configure producing a makefile;) -Original Message- From: Yiannis Mavroukakis Sent: 10 March 2004 14:43 To: 'Tomcat Users List' Subject: RE: mod_jk2 problems Well great, you took the httpd sources, got the library out of them but your httpd is probably

RE: mod_jk2 problems

2004-03-10 Thread Yiannis Mavroukakis
EMAIL PROTECTED] Sent: 10 March 2004 14:23 To: Tomcat Users List Subject: Re: mod_jk2 problems Thanks for answer! Yes, but I don't want to risk with the reinstallation! I have a very important server running. When I was compiling mod_jk2 I encountered that a lib was missing ( I forgot the n

Re: mod_jk2 problems

2004-03-10 Thread Vi
:10 To: Tomcat Users List Subject: mod_jk2 problems Hi, I read all FAQs and all the info I could find on the Internet about the issue. The thing is that I successfully compile mod_jk2, but when I try to load it I get: Cannot load /etc/httpd/modules/mod_jk2.so into server: /etc/httpd/modules/m

RE: mod_jk2 problems

2004-03-10 Thread Yiannis Mavroukakis
ssage- From: Vi [mailto:[EMAIL PROTECTED] Sent: 10 March 2004 08:10 To: Tomcat Users List Subject: mod_jk2 problems Hi, I read all FAQs and all the info I could find on the Internet about the issue. The thing is that I successfully compile mod_jk2, but when I try to load it I get: Cannot load

mod_jk2 problems

2004-03-10 Thread Vi
Hi, I read all FAQs and all the info I could find on the Internet about the issue. The thing is that I successfully compile mod_jk2, but when I try to load it I get: Cannot load /etc/httpd/modules/mod_jk2.so into server: /etc/httpd/modules/mod_jk2.so: undefined symbol: ap_get_module_config This