Return-Path: Delivered-To: apmail-jakarta-tomcat-user-archive@jakarta.apache.org Received: (qmail 40748 invoked by uid 500); 23 Aug 2001 16:21:42 -0000 Mailing-List: contact tomcat-user-help@jakarta.apache.org; run by ezmlm Precedence: bulk Reply-To: tomcat-user@jakarta.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list tomcat-user@jakarta.apache.org Received: (qmail 40684 invoked from network); 23 Aug 2001 16:21:41 -0000 Received: from smtp-ft1.fr.colt.net (213.41.78.25) by h31.sny.collab.net with SMTP; 23 Aug 2001 16:21:41 -0000 Received: from www2.cs (access-138.93.rev.fr.colt.net [213.41.93.138]) by smtp-ft1.fr.colt.net with ESMTP id f7NGPZM20467 for ; Thu, 23 Aug 2001 18:25:35 +0200 Received: from css4.cs (css4.cs [172.31.1.8]) by www2.cs (8.9.3/8.9.3) with ESMTP id SAA17688 for ; Thu, 23 Aug 2001 18:21:43 +0200 Received: by css4.cs with Internet Mail Service (5.5.2650.21) id ; Thu, 23 Aug 2001 18:21:41 +0200 Message-ID: From: GOMEZ Henri To: tomcat-user@jakarta.apache.org Subject: RE: link tomcat <-> apache Date: Thu, 23 Aug 2001 18:21:40 +0200 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N mod_webapp is ONLY for Tomcat 4.0. For 3.2 and 3.3 (or 4.0), use mod_jk instead # httpd.conf AddModule mod_jk.c JkWorkersFile /etc/httpd/conf/workers.properties JkLogFile /var/log/httpd/mod_jk.log JkLogLevel debug Alias /examples "/var/tomcat/webapps/examples" Options Indexes FollowSymLinks MultiViews AllowOverride AuthConfig Order allow,deny Allow from all JkMount /examples/servlet/* ajp13 JkMount /examples/*.jsp ajp13 AllowOverride None deny from all Alias /admin "/var/tomcat/webapps/admin" Options FollowSymLinks JkMount /admin/servlet/* ajp13 JkMount /admin/*.jsp ajp13 AllowOverride None deny from all ### workers.properties worker.list=ajp13 worker.ajp13.port=8009 worker.ajp13.host=localhost worker.ajp13.type=ajp13 worker.ajp13.lbfactor=1 worker.ajp13.cachesize=16 - Henri Gomez ___[_]____ EMAIL : hgomez@slib.fr (. .) PGP KEY : 697ECEDD ...oOOo..(_)..oOOo... PGP Fingerprint : 9DF8 1EA8 ED53 2F39 DC9B 904A 364F 80E6 >-----Original Message----- >From: zze-DELARUE Franck stagiaire FTRD/DMI/LAN >[mailto:franck.delarue@rd.francetelecom.com] >Sent: Thursday, August 23, 2001 6:07 PM >To: 'tomcat-user@jakarta.apache.org' >Subject: link tomcat <-> apache > > >hi everyone, >i've installed tomcat 3.2.2 on linux with apache. I try to >make a connection >between apache and tomcat but it doesn't work at all. I've copied the >modules mod_jserv, mod_jk, mod_webapp in the right directory >and changed the >http.conf file to use these modules like this : > > LoadModule webapp_module libexec/mod_webapp.so > AddModule mod_webapp.c > Include conf/mod_jk.conf > Include conf/tomcat-apache.conf > >There is maybe something else to do or to add to the httpd.conf like : > WebAppConnection conn warp localhost:8007 > WebAppDeploy examples conn /examples > WebAppInfo /webapp-info > >but this does not work ... > >Thanks in advance. >