Hello Jaimes, I use Windows rather than Unix, but I think the same issue still applies. When the ApacheConfig writes out my automatic file it writes the mod_jk.dll include like this:
<IfModule !mod_jk.c> LoadModule jk_module c:/Progra~1/Apache~1/Apache2/modules/mod_jk.dll </IfModule> I always have to change that to the following in order for Apache to start correctly: <IfModule !mod_jk.c> LoadModule jk_module modules/mod_jk.dll </IfModule> Notice that they both point to exactly where mod_jk.dll exists but Apache doesn't seem to like the former but starts fine with the latter. So, I autogenerate and then make a copy of it and modify that line to the latter format. Hopefully that helps. Jake Thursday, November 14, 2002, 10:14:03 AM, you wrote: JB> Hey Guys, JB> I know that this subject has been beaten to death, but I am at my wits end. I have tried about 8 different tutorials on the matter, and I always get the same appache message: Start Failed. I JB> have setup Tomcat by modifying my server.xml file to use the mod_jk connector, not the Coyote JK2 (I remmed it out). I have also set up my listener under the as: JB> <Listener className="org.apache.ajp.tomcat4.config.ApacheConfig" JB> modJk="/etc/httpd/modules/mod_jk.so"/> JB> I have setup my listener under the Host as: JB> <Listener className="org.apache.ajp.tomcat4.config.ApacheConfig" append="true" JB> modJk="/etc/httpd/modules/mod_jk.so" JB> workersConfig="/usr/jakarta/tomcat/conf/jk/workers.properties"/> JB> I have placed my workers.properties file in the $TOMCAT_HOME/conf/jk directory JB> I have setup my apache config file with the following include at the bottom of the file: JB> Include /etc/httpd/modules/mod_jk.so JB> I have also checked to make sure that my apache servername and my tomcat host servername are the same. JB> Tomcat starts up properly each time (No errors anyways) and the mod_jk.conf file is placed into the $TOMCAT_HOME/conf/auto directory. When I review this conf file all of the settings appear to JB> be consistent. JB> If anyone has ANY suggestions I would really apprecite it. JB> Thanks JB> Jaimes Blunt -- Best regards, Jacob mailto:hoju@;visi.com -- To unsubscribe, e-mail: <mailto:tomcat-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:tomcat-user-help@;jakarta.apache.org>
