The line > <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />
is commented out in server.xml, so I think you're right, it is the standard HTTP listener connector. So is there something on the Tomcat side that needs to change, or is it on the Apache side? --Michael On Sep 19, 2011, at 9:52 AM, Robert Zeigler wrote: > Looks like you're not using AJP; that looks like the standard HTTP listener > connector, and the config in apache looks like apache doing the balancing > directly, rather than the AJP worker doing the balancing. You can check for > a line like this in your server.xml file: > > <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" /> > > The most important part being the "protocol=" bit. > > You could also check for the relevant configuration in httpd.conf, such as > the following configuration keys: > > JkWorkersFile <- this one is essential > JkLogFile > JkLogLevel > JkLogStampFormat > > If your apache version is built with dynamic module loading enabled, then you > can check for the jk module: > > LoadModule jk_module /usr/lib/apache2/modules/mod_jk.so > > Which is the module handling the apache side of the AJP bridge. > > HTH, > > Robert > >> >> > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > For additional commands, e-mail: users-h...@tapestry.apache.org > --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org