Jonathon Reeve wrote:
Well I'm glad someone else is getting this, even if you have no idea either. We wondered if we were missing some configuration from workers.properties, since the "quick start" section (http://tomcat.apache.org/connectors-doc/howto/quick.html) on Tomcat's site gives an example "minimum workers.properties":
Huh, you really tried everything :) Couple of notes: 1. AJP connection is supposed to last forever. 2. cache_timeout, recycle_timeout, MaxRequestsPerClient tend to close the socket, so you have half-closed sockets, and that's why you are leaking resources. 3. Whenever there is a need to recycle one end of the channel the other end must be recycled too. This is done by setting connectionTimeout="milliseconds" in server.xml for AJP/1.3 connector. 4. If you need full failover add 'connection_timeout' and 'prepost_timeout' to each worker. This implicates that CPING/CPONG packets will be send before each request is forwarded to Tomcat. Regards, Mladen. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]