RE: mod_jk.so problems going from Apache 2.0.55 to Apache 2.2.2

2006-05-30 Thread Fenlason, Josh
Any reason you can't use mod_proxy_ajp? I believe that is the recommended method with 2.2.x. , Josh. -Original Message- From: raorba [mailto:[EMAIL PROTECTED] Sent: Monday, May 29, 2006 7:18 PM To: users@tomcat.apache.org Subject: Re: mod_jk.so problems going from Apache 2.0.55 to

RE: Native connector startup problem

2006-05-26 Thread Fenlason, Josh
received this email message in error, please notify the sender immediately by telephone or email and destroy the original message without making a copy. Thank you. - Original Message - From: Fenlason, Josh [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org; Martin

Native connector startup problem

2006-05-25 Thread Fenlason, Josh
I'm running into the error when I try to startup Tomcat 5.5.17 with the 1.1.3 native connector on AIX. It starts up fine on the same port when not using the native connector, so there's nothing else using the port. Has anyone else seen this? Anyone have any suggestions on what's wrong? Thanks in

Native Connector Question

2006-05-09 Thread Fenlason, Josh
What do I have to do to configure Tomcat to use the native connector on Unix? I've tried adding -Djava.library.path=path_to_ssl_apr_native_libraries, but it isn't loading them. It works for me on Windows, so I'm not sure what I'm doing wrong on Unix. Any suggestions? Thanks. , Josh.

RE: Native Connector Question

2006-05-09 Thread Fenlason, Josh
. -Original Message- From: Markus Schönhaber [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 09, 2006 10:22 AM To: Tomcat Users List Subject: Re: Native Connector Question Fenlason, Josh wrote: What do I have to do to configure Tomcat to use the native connector on Unix? I've

RE: Native Connector Question

2006-05-09 Thread Fenlason, Josh
Connector Question Fenlason, Josh wrote: My native lib binary is fine because setting LD_LIBRARY_PATH works fine. I've tried adding -Djava.library.path to JAVA_OPTS and CATALINA_OPTS in my Tomcat startup script, but it isn't loading the native connector. Any thoughts on why the second

RE: Native Connector Question

2006-05-09 Thread Fenlason, Josh
That sucks. Thanks for the pointer though. How come it works on Windows? Thanks. , Josh. -Original Message- From: Mladen Turk [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 09, 2006 11:00 AM To: Tomcat Users List Subject: Re: Native Connector Question Fenlason, Josh wrote: My

RE: Native Connector Question

2006-05-09 Thread Fenlason, Josh
Thanks for the explanation. , Josh. -Original Message- From: Mladen Turk [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 09, 2006 11:19 AM To: Tomcat Users List Subject: Re: Native Connector Question Fenlason, Josh wrote: That sucks. Thanks for the pointer though. How come

RE: Building mod_jk.so on AIX

2006-03-24 Thread Fenlason, Josh
This doesn't answer your question, but is there a specific reason you don't just user mod_proxy_ajp with Apache 2.2.0? You wouldn't have to build mod_jk then. , Josh. -Original Message- From: Bernie Durfee [mailto:[EMAIL PROTECTED] Sent: Friday, March 24, 2006 12:41 PM To: Tomcat

RE: Tomcat not shutting down

2006-03-13 Thread Fenlason, Josh
What version of Tomcat are you using? Are you using the native APR connector? There is a bug in the native shutdown code in 5.5.15, but it's fixed in 5.5.16. , Josh. -Original Message- From: Khawaja Shams [mailto:[EMAIL PROTECTED] Sent: Monday, March 13, 2006 2:27 PM To: Tomcat

RE: Tomcat not shutting down

2006-03-13 Thread Fenlason, Josh
. I shutdown using TOMCAT_HOME/bin/shutdown.sh. Do I need to upgrade to the latest version to get this to work? Thanks again. Regards, Khawaja Shams On 3/13/06, Fenlason, Josh [EMAIL PROTECTED] wrote: What version of Tomcat are you using? Are you using the native APR connector

RE: Which direction: mod_jk or mod_proxy_ajp? (was: why use mod_jk?)

2006-02-24 Thread Fenlason, Josh
That depends if you want to use Apache 2.0.x, Apache 2.2.x, or some other web server (i.e. IIS). If you're planning on using Apache 2.2.x, mod_proxy_ajp is the way to go. For anything else, mod_jk is the way to go. , Josh. -Original Message- From: Brad O'Hearne [mailto:[EMAIL

RE: Issue with ajp13 socket after tomcat shutdown

2006-02-24 Thread Fenlason, Josh
Problem From: Fenlason, Josh jfenlason () ptc ! com Date: 2006-01-31 22:45:57 ... I added the following line to tomcat-native.1.1.1/jni/native/src/network.c (added at line 388): apr_socket_opt_set( s, APR_SO_REUSEADDR, 1 ); But I'm still running into the same problem. Feb 24, 2006 9

RE: Which direction: mod_jk or mod_proxy_ajp? (was: why use mod_jk?)

2006-02-24 Thread Fenlason, Josh
. Bill Barker suggested the httpd.conf / mod_proxy_ajp directive side of the equation. Doesn't there have to be a connector in tomcat's server.xml which will allow listening for the ajp protocol? Is there documentation on this somewhere? Brad On Feb 24, 2006, at 8:07 AM, Fenlason, Josh

RE: default Tomcat 5.5 won't shutdown cleanly (Was: After adding mod_jk, tomcat won't shutdown cleanly)

2006-02-24 Thread Fenlason, Josh
Are you using the native apr connector? , Josh. -Original Message- From: Brad O'Hearne [mailto:[EMAIL PROTECTED] Sent: Friday, February 24, 2006 11:50 AM To: Tomcat Users List Subject: default Tomcat 5.5 won't shutdown cleanly (Was: After adding mod_jk, tomcat won't shutdown

RE: Using APR with tomcat leaves port 8009 bound when tomcat is terminated?

2006-02-22 Thread Fenlason, Josh
)apr_socket_bind(s-sock, a); } --- 385,390 ---BeginMessage--- I was doing a cut-and paste from the code in Httpd. In tcnative, 's' is it's internal socket structure, and the APR socket is s-sock. Fenlason, Josh [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I added the following

RE: Re: Re: Re: APR Connector Shutdown Problem

2006-02-06 Thread Fenlason, Josh
was doing a cut-and paste from the code in Httpd. In tcnative, 's' is it's internal socket structure, and the APR socket is s-sock. Fenlason, Josh [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I added the following line to tomcat-native.1.1.1/jni/native/src/network.c (added

RE: Re: Re: APR Connector Shutdown Problem

2006-01-31 Thread Fenlason, Josh
;-). In the bind method in network.c is probably easiest. If you want your patch to be accepted by the dev team, then you should probably wrap it in a '#ifndef WIN32' like httpd does (don't know why, and care even less :). Fenlason, Josh [EMAIL PROTECTED] wrote in message news:[EMAIL

RE: Re: APR Connector Shutdown Problem

2006-01-30 Thread Fenlason, Josh
, and recompile it. Fenlason, Josh [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I added the Listener you mentioned to server.xml, but I'm still seeing the issue. The problem is happening when run the shutdown.sh. I can understand if things aren't all clean and tidy if Tomcat

RE: APR Connector Shutdown Problem

2006-01-27 Thread Fenlason, Josh
Fenlason, Josh wrote: I'm running into a problem with the APR connector not shutting down properly. Tomcat runs fine and there are no errors on shutdown, but if I shut Tomcat down and start it up again I get a socket bind failed error in the catalina log (attached). I have

APR Connector Shutdown Problem

2006-01-26 Thread Fenlason, Josh
Title: Message I'm running into a problem with the APR connector not shutting down properly. Tomcat runs fine and there are no errors on shutdown, but if I shut Tomcat down and start it up again I geta socketbind failed errorin the catalina log (attached). I have to wait for several minutes

apr port + tomcat

2006-01-04 Thread Fenlason, Josh
Title: Message I'm running into a problem with Tomcat 5.5.12 and tomcat-native-1.1.0. I get theexception below when I try to restart Tomcat after it has served dynamic content for Apache. If Istop both Apache and Tomcat and wait a while and restart them, they startup fine. This seems very