Could you send me the whole httpd.conf file? Thanks
-----Original Message----- From: Antonio Gallegos Garc�a [mailto:[EMAIL PROTECTED]] Sent: 10 December 2001 18:31 To: Tomcat Users List Subject: Re: Help! urgent! LoadModule webapp_module modules/mod_webapp.so AddModule mod_webapp.c WebAppConnection conn warp localhost:8008 WebAppDeploy examples conn /examples WebAppInfo /webapp-info �Why don't you try to put the LoadModule and the addModule in the same place than the others?. Or delete the line LoadModule weapp ..... The else seems nice. Here you are an example working .... the loadmudule and addmodule are with the others... ## Confituraci�n del conector WARP para Apache #AddModule mod_webapp.c WebAppConnection conn warp gallegos:8008 WebAppDeploy examples conn /examples WebAppDeploy pruebas conn /pruebas WebAppDeploy manager conn /manager Also, ensure that you have this in your server.xml. <!-- Define an Apache-Connector Service --> <Service name="Tomcat-Apache"> <Connector className="org.apache.catalina.connector.warp.WarpConnector" port="8008" minProcessors="5" maxProcessors="75" enableLookups="true" acceptCount="10" debug="0"/> <!-- Replace "localhost" with what your Apache "ServerName" is set to --> <Engine className="org.apache.catalina.connector.warp.WarpEngine" name="Apache" debug="0" appBase="webapps"> <!-- Global logger unless overridden at lower levels --> <Logger className="org.apache.catalina.logger.FileLogger" prefix="apache_log." suffix=".txt" timestamp="true"/> <!-- Because this Realm is here, an instance will be shared globally --> <Realm className="org.apache.catalina.realm.MemoryRealm" /> </Engine> </Service> Wilson, Wayne wrote: >Sorry, I haven't used mod_webapp yet (I needed the load balancing I can get >with mod_jk) so I wouldn't be much help. > >Good luck! > >--Wayne > >-----Original Message----- >From: Peng Annie [mailto:[EMAIL PROTECTED]] >Sent: Monday, December 10, 2001 11:53 AM >To: 'Tomcat Users List' >Subject: RE: Help! urgent! > > >I am using mod_webapp. my httpd.conf, server.xml are in the attachments. > >-----Original Message----- >From: Wilson, Wayne [mailto:[EMAIL PROTECTED]] >Sent: 10 December 2001 17:41 >To: 'Tomcat Users List' >Subject: RE: Help! urgent! > > >Is your mod_jk.conf configured to handle the jsps? (with JkMount) > >-----Original Message----- >From: Peng Annie [mailto:[EMAIL PROTECTED]] >Sent: Monday, December 10, 2001 11:37 AM >To: 'Tomcat Users List' >Subject: RE: Help! urgent! > > >I tried, but apache still can not find my jsp files in tomcat(it can find >html files). > >-----Original Message----- >From: Kemp Randy-W18971 [mailto:[EMAIL PROTECTED]] >Sent: 10 December 2001 17:31 >To: '[EMAIL PROTECTED]' >Subject: RE: Help! urgent! > > >Did you try starting Tomcat before starting Apache? > >-----Original Message----- >From: Peng Annie [mailto:[EMAIL PROTECTED]] >Sent: Monday, December 10, 2001 9:08 AM >To: '[EMAIL PROTECTED]' >Subject: Help! urgent! > > >In the apache "error.log" >there is an error message > >Connection "conn" cannot connect > >in which conn is the connection name defined in http.conf to tomcat. > >Anyone has any idea? I can not get Tomcat running on Appache!! > >Thanks! > >Annie > >-- >To unsubscribe: <mailto:[EMAIL PROTECTED]> >For additional commands: <mailto:[EMAIL PROTECTED]> >Troubles with the list: <mailto:[EMAIL PROTECTED]> > >-- >To unsubscribe: <mailto:[EMAIL PROTECTED]> >For additional commands: <mailto:[EMAIL PROTECTED]> >Troubles with the list: <mailto:[EMAIL PROTECTED]> > >-- >To unsubscribe: <mailto:[EMAIL PROTECTED]> >For additional commands: <mailto:[EMAIL PROTECTED]> >Troubles with the list: <mailto:[EMAIL PROTECTED]> > > > >-- >To unsubscribe: <mailto:[EMAIL PROTECTED]> >For additional commands: <mailto:[EMAIL PROTECTED]> >Troubles with the list: <mailto:[EMAIL PROTECTED]> > -- To unsubscribe: <mailto:[EMAIL PROTECTED]> For additional commands: <mailto:[EMAIL PROTECTED]> Troubles with the list: <mailto:[EMAIL PROTECTED]> -- To unsubscribe: <mailto:[EMAIL PROTECTED]> For additional commands: <mailto:[EMAIL PROTECTED]> Troubles with the list: <mailto:[EMAIL PROTECTED]>
