�soft.com> To: "Tomcat Users List" <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> Subject: Re: load balance & session Date: Tue, 2 Jul 2002 17:06:05 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset="gb2312" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
Hi, try the following two urls, you can find a binary version of mod_jk for apache 2.0.39 in the first page, and the deploy instructions in the second page. http://www.acg-gmbh.de/mod_jk/ http://www.cnr.berkeley.edu/~salazar/apache_tomcat.html for a slight modification for the deployment, I just include the auto generated jk config file in the end of httpd.conf instead of copy the entire config lines into it, and it works, but you need to add a special line in the server.xml in order to indicate the abosulute path of the mod_jk.dll. here is a sample: httpd.conf: at the end add the following line Include D:/WEB/tomcat/4.04/conf/auto/mod_jk.conf server.xml: <Server port="8005" shutdown="SHUTDOWN" debug="0"> <Listener className="org.apache.ajp.tomcat4.config.ApacheConfig" modJk="D:/WEB/Apache2/modules/mod_jk.so" /> ... ... <Context path="/examples" docBase="examples" debug="0" reloadable="true" crossContext="true"> <Listener className="org.apache.ajp.tomcat4.config.ApacheConfig" append="true" /> ... Good luck. Yang Liu ----- Original Message ----- From: "Stone Shi" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 02, 2002 4:43 PM Subject: load balance & session > Hello all, > > When I use the mod_jk in APACHE 2.0.39, I get following message > and can not start the httpd, where can i get "compatible version mod_jk" > > ------------------------------------------------------------------------ > ---- > ---------------------- > httpd: module "mod_jk.c" is not compatible with this version of Apache. > Please contact the vendor for the correct version. > ------------------------------------------------------------------------ > ---- > ---------------------- > > Thank you! > > Stone > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
