Re: Mod_jk on Solaris - has anyone actually ever built it?

2003-07-25 Thread Bill Barker
I've built it many times on 2.7 ;-). On 2.6, I've only ever built version 1.1 (the one that ships with TC 3.3). The PITA part of the process is to install the GNU tools that it requires. This means 'libtool', 'autoconf', 'automake', and 'GNU make'. Also, at least while you are building, 'GNU

Re: mod_jk on windows

2003-07-24 Thread John Turner
Step-by-step: http://www.johnturner.com/howto John Ravi Pachipala wrote: Has any one made the apache-tomcat communication work on Wilndows 2000 machines? I have read some HOWTOs and they mostly talk about doing it on linux machines. I am planning to use the Coyote connector. I was able to

RE: mod_jk on windows

2003-07-24 Thread Ravi Pachipala
- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Thursday, July 24, 2003 11:48 AM To: Tomcat Users List Subject: Re: mod_jk on windows Step-by-step: http://www.johnturner.com/howto John Ravi Pachipala wrote: Has any one made the apache-tomcat communication work on Wilndows 2000 machines

Re: mod_jk on windows

2003-07-24 Thread John Turner
url patterns to Tomcat. For example, if my url has /ep/, I would like the request to go to Tomcat. Thanks for your help Ravi -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Thursday, July 24, 2003 11:48 AM To: Tomcat Users List Subject: Re: mod_jk on windows Step

RE: mod_jk on windows

2003-07-24 Thread Ravi Pachipala
problem with ports? I configured tomcat to work in stand-alone mode on port 7001. Any help is appreciated. Thanks Ravi -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Thursday, July 24, 2003 1:40 PM To: Tomcat Users List Subject: Re: mod_jk on windows Thanks

Re: mod_jk on windows

2003-07-24 Thread John Turner
- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Thursday, July 24, 2003 1:40 PM To: Tomcat Users List Subject: Re: mod_jk on windows Thanks for the kind words. Try: JkMount /ep/* ajp13 or better yet: JkMount /ep/*.jsp ajp13 JkMount /ep/servlet/* ajp13 John Ravi Pachipala wrote: Thanks

RE: mod_jk on windows

2003-07-24 Thread Ravi Pachipala
Where should JkMount be defined? Should it be in Tomcat's server.xml or Apache's httpd.conf? Thanks Ravi -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Thursday, July 24, 2003 2:41 PM To: Tomcat Users List Subject: Re: mod_jk on windows If its defined in Tomcat's

Re: Re: mod_jk round robin problem stateless session beans

2003-07-16 Thread Simon Pabst
morning Simon. Thanks for the research. Norm - Original Message - From: Simon Pabst [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Wednesday, July 16, 2003 3:58 AM Subject: Re: Re: mod_jk round robin problem stateless session beans I did a short test with Apache 2 worker mpm

Re: Re: mod_jk round robin problem stateless session beans

2003-07-15 Thread Simon Pabst
Thanks for you wisdom guys :-) I'll try and test if Apache 2 with worker mpm works better, although i still suspect the stateless session beans are part of the problem. Since like i said with sticky_session off or the SessionExample with sticky_session on the round robin seems to works fine.

Re: Re: mod_jk round robin problem stateless session beans

2003-07-15 Thread Simon Pabst
I did a short test with Apache 2 worker mpm today and now mod_jk2 seems to distribute the sessions more evenly, will post more results tomorrow. So round robin code is broken with current mod_jk1/2 and prefork Apache (1.3.27 and default Apache 2 configuration) Unfortunately you can't use Apache

Re: Re: mod_jk round robin problem stateless session beans

2003-07-15 Thread NormW
Good morning Simon. Thanks for the research. Norm - Original Message - From: Simon Pabst [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Wednesday, July 16, 2003 3:58 AM Subject: Re: Re: mod_jk round robin problem stateless session beans I did a short test

Re: mod_jk round robin problem stateless session beans

2003-07-14 Thread NormW
Good morning Simon. 'RoundRobin' is less likely the more Tomcat's you add I suspect. The balanced worker program always searches for a new worker by starting pointers from 1 rather than the last successful worker used, (AFAICT), and if a worker is free for the task it makes for muddy water indeed

Re: mod_jk round robin problem stateless session beans

2003-07-14 Thread Bill Barker
This is a pretty good description of what goes on, and it results in the highly skewed distributions that you are seeing. I had thought that if you are using Apache-2 with the 'worker' MPM, that you should get a better distribution (but haven't tried it myself). With Apache-1.3.x or Apache-2

Re: mod_jk again

2003-07-11 Thread John Turner
As far as Tomcat is concerned, 192.168.168.35 is a valid virtual host, so unless you have a Host container in server.xml for it, or have an Alias container for it to alias it to an already defined virtual host in server.xml, Tomcat won't recognize it and will default to the defaultHost

RE: mod_jk again

2003-07-11 Thread Ray Madigan
Got it - I just changed ServerName and Host name= to 192.168.169.35 and it works like a champ. Thanks for all of your help. Ray Madigan -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 12:08 PM To: Tomcat Users List Subject: Re: mod_jk again

Re: mod_jk again

2003-07-11 Thread John Turner
:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 12:08 PM To: Tomcat Users List Subject: Re: mod_jk again As far as Tomcat is concerned, 192.168.168.35 is a valid virtual host, so unless you have a Host container in server.xml for it, or have an Alias container for it to alias it to an already

Re: Mod_jk with apxs

2003-07-08 Thread Eric J. Pinnell
Install 2.0.46 from source... :) -e On Tue, 8 Jul 2003, Dumisani Nlebgwa wrote: Hi guys, I am using apache 2.0.40 that came with my redhat distribution and I am trying to make my mod_jk from source. Apparently I have to do './configure --with-apxs=path_to_apxs' However, my problem is that

Re: Mod_jk with apxs

2003-07-08 Thread John Turner
You have it, its part of the Apache distribution. You just need to find it and use the appropriate path. It might be an additional RPM, such as httpd-devel or whatever, in addition to httpd. John On Tue, 8 Jul 2003 16:34:20 -0400 (EDT), Dumisani Nlebgwa [EMAIL PROTECTED] wrote: Hi guys, I

Re: mod_jk and Coyote connector

2003-07-02 Thread John Turner
Yes, CoyoteConnector fully supports JK. Its what I use in production. I would avoid Ajp13Connector, unless you need it. I would use the actual source for the connectors: http://jakarta.apache.org/builds/jakarta-tomcat-connectors/ If you want ot post your JK problems to the list, we can help.

RE: mod_jk and Coyote connector

2003-07-02 Thread James Courtney
thanks! Jamey -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 02, 2003 5:23 AM To: Tomcat Users List Subject: Re: mod_jk and Coyote connector Yes, CoyoteConnector fully supports JK. Its what I use in production. I would avoid Ajp13Connector

Re: mod_jk and Coyote connector

2003-07-02 Thread John Turner
: Wednesday, July 02, 2003 5:23 AM To: Tomcat Users List Subject: Re: mod_jk and Coyote connector Yes, CoyoteConnector fully supports JK. Its what I use in production. I would avoid Ajp13Connector, unless you need it. I would use the actual source for the connectors: http://jakarta.apache.org

RE: mod_jk and Coyote connector

2003-07-02 Thread James Courtney
=lb:balanced # Status URI mapping (should not be publicly accessible!!!) [uri:/jkstatus] group=status:status -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 02, 2003 9:31 AM To: Tomcat Users List Subject: Re: mod_jk and Coyote connector Development

Re: mod_jk quirk?

2003-06-23 Thread John Turner
-Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Friday, June 20, 2003 11:23 AM To: Tomcat Users List Subject: SPAM: Re: mod_jk quirk? [Message inserted by SAS Postmaster: ISD is evaluating gateway-level spam defenses. This message was judged by one of the filters being

RE: mod_jk quirk?

2003-06-22 Thread Dave Naden
Thanks both of you! This answers my question. -Dave -Original Message- From: Bill Barker [mailto:[EMAIL PROTECTED] Sent: Saturday, June 21, 2003 2:03 AM To: [EMAIL PROTECTED] Subject: Re: mod_jk quirk? Larry is correct. The worker is configurable. The Jk docs are a mess

Re: mod_jk quirk?

2003-06-20 Thread John Turner
Hi - AFAIK, Tomcat never reads workers.properties, only mod_jk reads workers.properties. If you use the auto-generation, your worker will always be named ajp13. If you need something else, you need to configure things manually. The ApacheConfig classes are a convenience, not a requirement,

RE: SPAM: Re: mod_jk quirk?

2003-06-20 Thread Dave Naden
OK, I appreciate your response. -Dave -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Friday, June 20, 2003 11:23 AM To: Tomcat Users List Subject: SPAM: Re: mod_jk quirk? [Message inserted by SAS Postmaster: ISD is evaluating gateway-level spam defenses

RE: mod_jk only loadbalancing to one machine

2003-06-20 Thread Michael Cardon
I had the same problem with load balancing using mod_jk2. I found that changing the lb_factor made a difference. If I set the lb_factor in each of my connector descriptors, all requests went to the last linux box that was defined. I have 3 instances to load balance, this is what I did for now:

Re: mod_jk quirk?

2003-06-20 Thread Larry Isaacs
AM To: Tomcat Users List Subject: SPAM: Re: mod_jk quirk? [Message inserted by SAS Postmaster: ISD is evaluating gateway-level spam defenses. This message was judged by one of the filters being evaluated to be spam. If this message is in fact spam, ** there is no action you need to take

Re: mod_jk only loadbalancing to one machine

2003-06-20 Thread Bill Barker
AFAIK, load balancing only works well with Apache-2 using the 'worker' MPM. With the 'pre-fork' MPM (which includes Apache-1.3.x on *nix systems), each child has it's own view of the current lb state, so they still tend to bunch. The 'pre-fork' problem probably won't be fixed in mod_jk.

Re: mod_jk quirk?

2003-06-20 Thread Bill Barker
List Subject: SPAM: Re: mod_jk quirk? [Message inserted by SAS Postmaster: ISD is evaluating gateway-level spam defenses. This message was judged by one of the filters being evaluated to be spam. If this message is in fact spam, ** there is no action you need to take **. Should our

Re: mod_jk questions

2003-06-13 Thread John Turner
Platform? John On Fri, 13 Jun 2003 23:47:47 +0900, Wayne Chang [EMAIL PROTECTED] wrote: Hi, I noticed that the mod_jk 1.2.4 was recently released. I was wondering if you had a binary of it available for Apache 1.3 and Tomcat 4.1. I would like to upgrade my mod_jk. On a related note, I was

RE: mod_jk questions

2003-06-13 Thread Wayne Chang
John, The platform is Red Hat 9. Best regards, Wayne Chang Pacific Northwest Software Mobile: (978) 869-3446 Email: [EMAIL PROTECTED] -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Saturday, June 14, 2003 12:01 AM To: Tomcat Users List Subject: Re

Re: mod_jk questions

2003-06-13 Thread John Turner
Turner [mailto:[EMAIL PROTECTED] Sent: Saturday, June 14, 2003 12:01 AM To: Tomcat Users List Subject: Re: mod_jk questions Platform? John On Fri, 13 Jun 2003 23:47:47 +0900, Wayne Chang [EMAIL PROTECTED] wrote: Hi, I noticed that the mod_jk 1.2.4 was recently released. I was wondering if you had

RE: mod_jk questions

2003-06-13 Thread Wayne Chang
Pacific Northwest Software Mobile: (978) 869-3446 Email: [EMAIL PROTECTED] -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Saturday, June 14, 2003 2:08 AM To: Tomcat Users List Subject: Re: mod_jk questions Well, building it is pretty easy, all things

Re: Mod_jk, ssl, java, and certificates question

2003-06-09 Thread Jeff Owens
Owens - Original Message - From: Bill Barker [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, June 06, 2003 8:26 PM Subject: Re: Mod_jk, ssl, java, and certificates question The client only needs to deal with Apache-ssl. Apache with mod_jk (configured correctly, e.g. the default

Re: mod_jk windows 2000 pro

2003-06-06 Thread John Turner
[EMAIL PROTECTED]To: Tomcat Users List tomcat- [EMAIL PROTECTED] turner.com cc: Subject: Re: mod_jk windows 2000 pro 06/04/2003 04:57

Re: mod_jk windows 2000 pro

2003-06-06 Thread John Turner
] turner.com cc: Subject: Re: mod_jk windows 2000 pro 06/04/2003 04:57 PM Please respond

Re: mod_jk windows 2000 pro

2003-06-06 Thread JB97782
] turner.com cc: Subject: Re: mod_jk windows 2000 pro 06/05/2003 09:31

Re: Mod_jk, ssl, java, and certificates question

2003-06-06 Thread Bill Barker
The client only needs to deal with Apache-ssl. Apache with mod_jk (configured correctly, e.g. the default config) will pass the SSL variables to Tomcat, but all of the SSL handling (including server-cert) will be done by Apache. Jeff Owens [EMAIL PROTECTED] wrote in message news:[EMAIL

Re: mod_jk windows 2000 pro

2003-06-05 Thread John Turner
Any special reason you didn't use Apache 2.0.45? John On Wed, 4 Jun 2003 10:53:44 -0400, [EMAIL PROTECTED] wrote: Hi all, I am new to using apache and tomcat. I have installed both on a Windows 2000 pro PC. I installed apache v2.0.42 and tomcat v4.1.18. I followed John Turners instructions

Re: mod_jk windows 2000 pro

2003-06-05 Thread JB97782
]To: Tomcat Users List [EMAIL PROTECTED] turner.com cc: Subject: Re: mod_jk windows 2000 pro

Re: mod_jk windows 2000 pro

2003-06-05 Thread John Turner
Users List tomcat- [EMAIL PROTECTED] turner.com cc: Subject: Re: mod_jk windows 2000 pro 06/04/2003 11:47 AM

Re: mod_jk windows 2000 pro

2003-06-05 Thread JB97782
] turner.com cc: Subject: Re: mod_jk windows 2000 pro 06/04/2003 12:03

Re: mod_jk windows 2000 pro

2003-06-05 Thread John Turner
]To: Tomcat Users List tomcat- [EMAIL PROTECTED] turner.com cc: Subject: Re: mod_jk windows 2000 pro 06/04/2003 12:03 PM

Re: mod_jk windows 2000 pro

2003-06-05 Thread JB97782
: Subject: Re: mod_jk windows 2000 pro 06/04/2003 12:36 PM

Re: mod_jk windows 2000 pro

2003-06-05 Thread John Turner
John Turner [EMAIL PROTECTED]To: Tomcat Users List tomcat- [EMAIL PROTECTED] turner.com cc: Subject: Re: mod_jk windows 2000 pro 06/04/2003 12:36

Re: mod_jk windows 2000 pro

2003-06-05 Thread JB97782
]To: Tomcat Users List tomcat- [EMAIL PROTECTED] turner.com cc: Subject: Re: mod_jk windows 2000 pro 06/04/2003 12:36 PM Please respond to Tomcat Users List I didn't see the attachments come through on the list. There's probably an easy answer. The first things

Re: mod_jk windows 2000 pro

2003-06-05 Thread John Turner
Turner [EMAIL PROTECTED]To: Tomcat Users List tomcat- [EMAIL PROTECTED] turner.com cc: Subject: Re: mod_jk windows 2000 pro 06/04/2003 12:53

Re: mod_jk windows 2000 pro

2003-06-05 Thread JB97782
Hi John, I have the server name set as ServerName BostonDev.ad.dstsystems.com:80. As far as I can tell I have no virtual hosts defined in httpd.conf. jim === begin httpd.conf # # Based upon the NCSA server configuration files originally by Rob McCool. # # This is the main Apache server

Re: mod_jk windows 2000 pro

2003-06-05 Thread John Turner
OK, what URL are you trying to access? http://localhost/examples, or http://BostonDev.ad.dstsystems.com/examples? John On Wed, 4 Jun 2003 16:26:26 -0400, [EMAIL PROTECTED] wrote: Hi John, I have the server name set as ServerName BostonDev.ad.dstsystems.com:80. As far as I can tell I have

Re: mod_jk windows 2000 pro

2003-06-05 Thread JB97782
[EMAIL PROTECTED]To: Tomcat Users List [EMAIL PROTECTED] turner.com cc: Subject: Re

Re: mod_jk mapping

2003-06-04 Thread Boris Folgmann
Graham Smith schrieb: Context path= docBase=xfly ... and I have done, but that doesn't really solve the multiple webapps in one container problem. As far as I know you should use ROOT and not xfly for the directory name where your webapp is. Then use this: JkMount / worker1 JkMount /*

RE: Mod_jk and tomcat 4.1.18 communication issues

2003-03-25 Thread Marion McKelvie
It looks like you are seeing the same problem as some of the rest of us. It seems apache, tomcat or mod_jk does not close the connection after serving a request and the number of threads just keep building up. It seems to be a problem mainly on Redhat 8. Have a look at the 'Problems with

Re: mod_jk installation

2003-03-21 Thread Vincent Panel
Where did you get your mod_jk ? According to what you say, you should download the following version : http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk/release/v1.2.1/bin/linux/i386/mod_jk-1.3-eapi.so Also note that you should have mod_so compiled into apache in order to

RE: mod_jk installation

2003-03-21 Thread Tarun Ghanshyam Abhichandani
- From: Vincent Panel [mailto:[EMAIL PROTECTED] Sent: Friday, March 21, 2003 12:54 AM To: Tomcat Users List Subject: Re: mod_jk installation Where did you get your mod_jk ? According to what you say, you should download the following version : http://jakarta.apache.org/builds/jakarta-tomcat

Re: mod_jk installation

2003-03-21 Thread Albert Lunde
I am trying to configure mod_jk 1.3 to work between Apache 1.3.27 with mod_ssl and Tomcat 4.1.18 on Linux Version 7.1. After installing Apache 1.3.27 and Tomcat 4.1.18 when I update httpsd.conf with following two lines LoadModule jk_module /libexec/mod_jk.so AddModule mod_jk.c And then when I

Re: mod_jk for 3.2.4

2003-03-14 Thread David . Vann
I'm sorry, let me clarify. I'm trying to find the latest mod_jk for Apache 1.3.27 and Tomcat 3.2.4 for Tru64 Unix 5.1. Can anyone help? Sincerely, David Vann Martha Jefferson Hospital 459 Locust Avenue Charlottesville, VA 22902 [EMAIL PROTECTED] Phone (434) 244-5911 Fax (434) 982-7351

Re: mod_jk for 3.2.4

2003-03-14 Thread Bill Barker
You can get Tomcat 3.2.4 from http://jakarta.apache.org/builds/jakarta-tomcat/release/v3.2.4/bin/. I, personally, haven't seen a post of somebody that has made the binaries available for Tru64 Unix. As a result, the best pointer I can give you is to download the source from

RE: mod_jk problem

2003-03-13 Thread Larry
I think you are looking in the wrong area. If mod_jk is working on the intranet it should work from outside. Does a page served just by apache work through the internet (not using mod_jk)? Can you connect directly through to the tomcat service (not using mod_jk and apache, opening port

RE: mod_jk problem

2003-03-13 Thread Gaston Escobar
tomcat directly, and it worked! I know it's strange, separetly, both of them work well. But, they don't work together?? -Mensaje original- De: Larry [mailto:[EMAIL PROTECTED] Enviado el: Jueves, 13 de Marzo de 2003 05:10 p.m. Para: [EMAIL PROTECTED] Asunto: RE: mod_jk problem I think you

Re: mod_jk problem

2003-03-13 Thread Chong Yu Meng
I think the problem may have something to do with the IP address specified inside your VirtualHost. That's a non-routable IP, and even though you may have done a mapping on your router/firewall/gateway, the IP address returned to your client will be 192.168.1.28, which I assume will be blocked

RE: Mod_jk on WinXP (revisited)

2003-03-06 Thread Denise Mangano
Hi again :) I'm sorry to bother everyone with this - I'm sure its been covered before but I could not find anything in the archives... And I would really like to get this resolved. I'm setting up mod_jk on Apache 1.3.27/Tomcat 4.1.18/WinXP install. I am following John Turner's HOW-TO - its for

RE: Mod_jk on WinXP (revisited)

2003-03-06 Thread Denise Mangano
, 2003 10:26 AM To: 'Tomcat Users List' Subject: RE: Mod_jk on WinXP (revisited) Hi again :) I'm sorry to bother everyone with this - I'm sure its been covered before but I could not find anything in the archives... And I would really like to get this resolved. I'm setting up mod_jk on Apache

Re: Mod_jk on WinXP (revisited)

2003-03-06 Thread Henry Tang
All i know is that you don't need to do that for apache 2.0 - Original Message - From: Denise Mangano [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Thursday, March 06, 2003 9:52 AM Subject: RE: Mod_jk on WinXP (revisited) OK... I tried AddModule mod_jk.c

Re: Mod_jk on WinXP (revisited)

2003-03-06 Thread Bill Barker
, 2003 10:26 AM To: 'Tomcat Users List' Subject: RE: Mod_jk on WinXP (revisited) Hi again :) I'm sorry to bother everyone with this - I'm sure its been covered before but I could not find anything in the archives... And I would really like to get this resolved. I'm setting up mod_jk on Apache

RE: mod_jk error

2003-03-03 Thread Turner, John
Try deleting the lbfactor line from your workers.properties file. It's not necessary when you only have one worker defined, and it may be causing confusion to mod_jk.so. John -Original Message- From: Adam Denenberg [mailto:[EMAIL PROTECTED] Sent: Saturday, March 01, 2003 8:36 PM

Re: mod_jk error

2003-03-03 Thread Adam Denenberg
Hmm, tried that but still no luck. I still get the following [Mon Mar 03 08:16:00 2003] [jk_uri_worker_map.c (477)]: Attempting to map URI '/examples/jsp/dates/date.jsp' [Mon Mar 03 08:16:00 2003] [jk_uri_worker_map.c (558)]: jk_uri_worker_map_t::map_uri_to_worker, Found a suffix match

RE: mod_jk error

2003-03-03 Thread Turner, John
out correctly in all the places where it needs to be. John -Original Message- From: Adam Denenberg [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2003 8:24 AM To: Tomcat Users List Subject: Re: mod_jk error Hmm, tried that but still no luck. I still get the following

Re: mod_jk error

2003-03-03 Thread Adam Denenberg
, 2003 8:24 AM To: Tomcat Users List Subject: Re: mod_jk error Hmm, tried that but still no luck. I still get the following [Mon Mar 03 08:16:00 2003] [jk_uri_worker_map.c (477)]: Attempting to map URI '/examples/jsp/dates/date.jsp' [Mon Mar 03 08:16:00 2003] [jk_uri_worker_map.c

Re: mod_jk error (jk_map.c ERROR)

2003-03-03 Thread Adam Denenberg
:[EMAIL PROTECTED] Sent: Monday, March 03, 2003 8:24 AM To: Tomcat Users List Subject: Re: mod_jk error Hmm, tried that but still no luck. I still get the following [Mon Mar 03 08:16:00 2003] [jk_uri_worker_map.c (477)]: Attempting to map URI '/examples/jsp/dates/date.jsp' [Mon

RE: mod_jk

2003-03-03 Thread Jeremy Whitlock
, John [mailto:[EMAIL PROTECTED] Sent: Friday, February 28, 2003 9:25 AM To: 'Tomcat Users List' Subject: RE: mod_jk Yes, .44 is module compatible with .43. For more info, check out my RH HOWTO for Apache + JK + Tomcat: http://www.johnturner.com/howto John -Original Message- From

RE: mod_jk

2003-03-03 Thread Filip Hanik
how about a RTFM on this one! :) http://www.johnturner.com/howto/rh72-howto.html -Original Message- From: Jeremy Whitlock [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2003 12:14 PM To: 'Tomcat Users List' Subject: RE: mod_jk John, I went to your page and it's for a Windows

RE: mod_jk

2003-03-03 Thread Jeremy Whitlock
Filip, You are correct and my impatience has gotten me. Sorry for the inconvenience, Jeremy -Original Message- From: Filip Hanik [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2003 1:18 PM To: Tomcat Users List Subject: RE: mod_jk how about a RTFM on this one! :) http

RE: mod_jk

2003-03-03 Thread Turner, John
No, there are HOWTOs there for Win2K/XP, Solaris 8, and RH 7.2/7.3. Three total. John -Original Message- From: Jeremy Whitlock [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2003 3:14 PM To: 'Tomcat Users List' Subject: RE: mod_jk John, I went to your page and it's

RE: mod_jk

2003-03-03 Thread Jeremy Whitlock
John, Didn't see the Red Hat ones. I found and they worked. Thanks, Jeremy -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2003 1:27 PM To: 'Tomcat Users List' Subject: RE: mod_jk No, there are HOWTOs there for Win2K/XP, Solaris 8

RE: mod_jk

2003-02-28 Thread Turner, John
Yes, .44 is module compatible with .43. For more info, check out my RH HOWTO for Apache + JK + Tomcat: http://www.johnturner.com/howto John -Original Message- From: Jeremy Whitlock [mailto:[EMAIL PROTECTED] Sent: Friday, February 28, 2003 11:11 AM To: Tomcat Subject: mod_jk

RE: mod_jk

2003-02-28 Thread Jeremy Whitlock
28, 2003 9:25 AM To: 'Tomcat Users List' Subject: RE: mod_jk Yes, .44 is module compatible with .43. For more info, check out my RH HOWTO for Apache + JK + Tomcat: http://www.johnturner.com/howto John -Original Message- From: Jeremy Whitlock [mailto:[EMAIL PROTECTED] Sent: Friday

RE: mod_jk

2003-02-28 Thread Phillip Qin
Whitlock [mailto:[EMAIL PROTECTED] Sent: February 28, 2003 11:28 AM To: 'Tomcat Users List' Subject: RE: mod_jk John, Thanks for your help. Do you think that since I didn't install apache via Red Hat installer that the document might not work for me? They use an older version of Apache

RE: mod_jk

2003-02-28 Thread Jeremy Whitlock
Phillip, Just the answer I was looking for. Thanks a lot, Jeremy -Original Message- From: Phillip Qin [mailto:[EMAIL PROTECTED] Sent: Friday, February 28, 2003 9:34 AM To: 'Tomcat Users List' Subject: RE: mod_jk I see many problems when you include apache in your Red hat

RE: mod_jk

2003-02-28 Thread Turner, John
-Original Message- From: Jeremy Whitlock [mailto:[EMAIL PROTECTED] Sent: Friday, February 28, 2003 11:28 AM To: 'Tomcat Users List' Subject: RE: mod_jk John, Thanks for your help. Do you think that since I didn't install apache via Red Hat installer that the document might

RE: mod_jk problems on Apache 2.0

2003-02-27 Thread Turner, John
RH 8 ships with Apache 2.0.40, and if you've applied RPM updates to your RH installation, the 2.0.40 is further munged from a standard 2.0.40, as RH has gone and backported all of the security and other fixes between .40 and .44 to their .40 instead of just distributing .44. Depending on where

Re: mod_jk load balancing not evenly distributed

2003-02-27 Thread Jake Robb
There's a setting... I think it's in workers.properties, called lbfactor, which allows you to control the balancing factors. -Jake Mike Bradford wrote: Has anyone else had experience with mod_jk (and mod_jk2) not evenly distributing requests across systems? It seems that the first system

RE: mod_jk-2.0.43.so

2003-02-26 Thread Charles A Jordan
what is it that you are looking for, or what it is that is wrong with 2.0.2. John -Original Message- From: Charles A Jordan [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 25, 2003 4:55 PM To: [EMAIL PROTECTED] Subject: RE: mod_jk-2.0.43.so If this is jakarta-tomcat

RE: mod_jk-2.0.43.so

2003-02-26 Thread Turner, John
that there will be some loose ends for awhile. John -Original Message- From: Charles A Jordan [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 26, 2003 8:24 AM To: [EMAIL PROTECTED] Subject: RE: mod_jk-2.0.43.so I am seeing the following in the apache2 error_log file: [Wed Feb

RE: mod_jk-2.0.43.so

2003-02-25 Thread Turner, John
http://jakarta.apache.org/builds/jakarta-tomcat-connectors/ John -Original Message- From: Charles A Jordan [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 25, 2003 4:45 PM To: [EMAIL PROTECTED] Subject: mod_jk-2.0.43.so Exactly where do I get the mod_jk-2.0.43.so source?

RE: mod_jk-2.0.43.so

2003-02-25 Thread Charles A Jordan
If this is jakarta-tomcat-connectors-jk2-2.0.2-src.tar.gz then I have already compiled and using this one. Am I looking at the wrong source? http://jakarta.apache.org/builds/jakarta-tomcat-connectors/ John -Original Message- From: Charles A Jordan [mailto:[EMAIL PROTECTED]

RE: mod_jk-2.0.43.so

2003-02-25 Thread Turner, John
PROTECTED] Subject: RE: mod_jk-2.0.43.so If this is jakarta-tomcat-connectors-jk2-2.0.2-src.tar.gz then I have already compiled and using this one. Am I looking at the wrong source? http://jakarta.apache.org/builds/jakarta-tomcat-connectors/ John -Original Message

RE: mod_jk + ssl

2003-02-24 Thread Turner, John
Nope. The communications between Tomcat and Apache, via mod_jk, will be in the clear (non-SSL). Assuming you can configure your Apache for SSL correctly, and can configure the JK connection correctly, there's nothing else you have to do to Tomcat. John -Original Message- From: Adam

Re: mod_jk integration

2003-02-19 Thread Bill Barker
For Apache 1.3.x, you need to move 'mod_rewrite' below 'mod_jk' in the AddModule list. Alternatively, the [PT] option may work (but I haven't tried it). Alexander Czernay [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hi Lajos, thanks for your help. I read

Solved it. Re: mod_jk virtual hosts ? 90% of the way there.

2003-02-18 Thread Soefara Redzuan
Solved it myself :-) I added the JkMount to the VirtualHost directives and now everything appears to work perfectly. VirtualHost aaa.bbb.ccc.ddd ServerName www.domain1.com ErrorLog logs/error_log TransferLog logs/access_log JkMount /* worker1 /VirtualHost VirtualHost

Re: Solved it. Re: mod_jk virtual hosts ? 90% of the way there.

2003-02-18 Thread ramakrishna
hi, * Soefara Redzuan ([EMAIL PROTECTED]) wrote: Wow, this mod_jk2 really is much easier to configure than mod_jk was, though the advanced configuration looks quite daunting. For simple virtual hosting of a servlet/JSP site, I shouldn't need more than one worker, should I? Correct me if am

Re: Solved it. Re: mod_jk virtual hosts ? 90% of the way there.

2003-02-18 Thread Soefara Redzuan
Hi RK, I thought my workers.properties file looked very different from everybody else's using mod_jk2 ! I just checked again and realize I misread the page http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/jk2/confighowto.html I actually put the following in jk2.properties instead of in

Re: Solved it. Re: mod_jk virtual hosts ? 90% of the way there.

2003-02-18 Thread Soefara Redzuan
-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Solved it. Re: mod_jk virtual hosts ? 90% of the way there. Date: Tue, 18 Feb 2003 19:18:51 +0800 Hi RK, I thought my workers.properties file looked very different from everybody else's using mod_jk2 ! I just checked again

RE: mod_jk virtual hosts ? 90% of the way there.

2003-02-18 Thread Turner, John
JK has way more documentation and support than JK2. You're missing a JkMount line. VirtualHost aaa.bbb.ccc.ddd ServerName www.domain1.com DocumentRoot /usr/local/etc/httpd/site1 ErrorLog logs/error_log TransferLog logs/access_log JkMount /*.jsp ajp13 JkMount /servlets/* ajp13 /VirtualHost

RE: Solved it. Re: mod_jk virtual hosts ? 90% of the way there.

2003-02-18 Thread Turner, John
FYI...you aren't using JK2 at all. You are using JK. John -Original Message- From: Soefara Redzuan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 18, 2003 4:04 AM To: [EMAIL PROTECTED] Subject: Solved it. Re: mod_jk virtual hosts ? 90% of the way there. Solved it myself :-) I

RE: Solved it. Re: mod_jk virtual hosts ? 90% of the way there.

2003-02-18 Thread Turner, John
PROTECTED]] Sent: Tuesday, February 18, 2003 6:19 AM To: [EMAIL PROTECTED] Subject: Re: Solved it. Re: mod_jk virtual hosts ? 90% of the way there. Hi RK, I thought my workers.properties file looked very different from everybody else's using mod_jk2 ! I just checked again and realize I misread

RE: mod_jk virtual hosts ? 90% of the way there.

2003-02-18 Thread Soefara Redzuan
needs configuring (with mod_jk) since it is the one making the connections? Thank you and sorry for all the confusion earlier. Soefara. From: Turner, John [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Subject: RE: mod_jk

RE: mod_jk virtual hosts ? 90% of the way there.

2003-02-18 Thread Turner, John
-Original Message- From: Soefara Redzuan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 18, 2003 7:35 AM To: [EMAIL PROTECTED] Subject: RE: mod_jk virtual hosts ? 90% of the way there. Thank you John, You're right on all three counts (a) I forgot a JkMount line and now it works fine (b

Re: mod_jk integration

2003-02-18 Thread Lajos
Hi Alexander - There are several ways you can do this - see my Cocoon notes at http://www.galatea.com/flashguides/cocoon-tips-2.xml (or my book ;) ). Probably the best is simply to make the cocoon webapp your default context in server.xml: Context path= docBase=cocoon debug=0/ Regards,

Re: mod_jk virtual hosts ? 90% of the way there.

2003-02-18 Thread sunisson
Could you please tell me which linux you use and what version? I tried to do the same on my redhat 8.0. So it is apache2 and tomecat 4.1. I even cannot compile the native(ant native). Any suggestion? [EMAIL PROTECTED] wrote: Hello all, Mod_jk2 is much easier to install and configure than

<    1   2   3   4   5   6   7   8   9   10   >