Re: I'm officially lost with mod_jk

2003-07-17 Thread Werner van Mook
Hi Astrid, I got the source code for mod_jk and build it myself. I did build it myself because I was having problems that could be related to the native parts inside mod_jk. (At leas that's what I came to think). I got the source code from the apache site. http://jakarta.apache.org/builds/jakar

Re: I'm officially lost with mod_jk

2003-07-17 Thread John Turner
http://jakarta.apache.org/builds/jakarta-tomcat- connectors/jk/release/v1.2.1/bin/solaris8/ John On Thu, 17 Jul 2003 15:08:24 +0200, Astrid Wagner <[EMAIL PROTECTED]> wrote: Hi Werner, Sorry to link into your conversation: It seems that you went through the problems I am about to have (connec

Re: I'm officially lost with mod_jk

2003-07-17 Thread Astrid Wagner
Hi Werner, Sorry to link into your conversation: It seems that you went through the problems I am about to have (connecting tomcat 4 to Apache 1.3: Solaris 8). Since I haven't gotten a response to a previous email: Where did you get mod_jk ? Why did you have to compile it and can you give more inf

RE: I'm officially lost with mod_jk

2003-07-16 Thread Kannan Sundararajan
change the port number from 8080 to 80 -Original Message- From: Werner van Mook [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 16, 2003 8:54 AM To: Tomcat Users List Cc: [EMAIL PROTECTED] Subject: Re: I'm officially lost with mod_jk Aha, A typo on my side. changed into Now my

Re: I'm officially lost with mod_jk

2003-07-16 Thread Werner van Mook
I realized after sending my previous mail that I didn't have any JkMount directives. I'm currently in the process of creating them. when I have any problems again I will let you know. Regards werner - To unsubscribe, e-mail: [

Re: Re: I'm officially lost with mod_jk

2003-07-16 Thread Simon Pabst
If Apache says 404 not found, your JkMount config is wrong propably, What does your JkMount stuff look like? Are the JkMount directives in global httpd.conf or just in one VirtualHost? Any errors in mod_jk.log? "Tomcat Users List" <[EMAIL PROTECTED]> schrieb am 16.07.03 14:54:06: > > Aha, > > A

Re: I'm officially lost with mod_jk

2003-07-16 Thread Werner van Mook
Aha, A typo on my side. changed into Now my error log file displays : [Wed Jul 16 14:43:40 2003] [notice] Apache/1.3.20 Sun Cobalt (Unix) mod_ssl/2.8.4 OpenSSL/0.9.6b PHP/4.0.3pl1 mod_jk/1.2.2 mod_auth_pam_external/0.1 FrontPage/4.0.4.3 mod_perl/1.25 configured -- resuming normal operations

Re: Re: I'm officially lost with mod_jk

2003-07-16 Thread Simon Pabst
Your JK Stuff in httpd.conf looks a bit wrong to me, and the error means that workers.properties is either not found or not loaded, try this: httpd.conf: #For Apache 1.x additional modules should be normally in apache/libexec dir, not in modules as in your config (unless you got Apache 2 now?)

Re: I'm officially lost with mod_jk

2003-07-16 Thread Werner van Mook
Gute Morgen Simon, I've compiled the mod_jk myself. it was easy. But I still have problems. I will so you what I have. In httpd.conf : LoadModule jk_module modules/mod_jk.so # MY OWN STUFF HERE AddModule mod_jk.c JkWorkersFile /etc/httpd/conf/workers.properties JkLogFile /etc/httpd/log

Re: I'm officially lost with mod_jk

2003-07-14 Thread Simon Pabst
That looks like a trailing slash problem, you requested /Friss, but mounted only /Friss/ Either use the following JkMount additionally: JkMount /Friss worker1 Or use Apache's mod_rewrite to put a trailing slash to URL if it there is none. http://httpd.apache.org/docs/misc/rewriteguide.html Also mak

Re: I'm officially lost with mod_jk

2003-07-14 Thread John Turner
A couple of things... - remove JkMount from global configuration. JkMount directives are VirtualHost-specific. - verify the ServerName in httpd.conf matches the name in your Host container in server.xml - change your worker name to ajp13 (worker1 is probably OK but since it doesn't matter, t

Re: I'm officially lost with mod_jk

2003-07-14 Thread Jeff Tulley
Crazy question: Did you type the url literally like the one below (minus the period at the end of the sentence of course)?? When you go though the mod_jk you need to have a traling slash, so http://www.connecties.com/Friss/ This is due to the matching functionality of the mod, and the way in w

Re: I'm officially lost with mod_jk

2003-07-14 Thread Javier Ayllon
at first sight you can see chcesize=10 instead of cachesize=10 in your workers.properties you can start there. :-) On Mon, 2003-07-14 at 18:35, Werner van Mook wrote: > Hi all, > > Here is another user of mod_jk who's now officially lost. > > I have apache 1.3.x with tomcat 4.1.24 > I