Reputation: 11
I have an Apache HTTP web server that is load balancing for two tomcat instances using mod_jk. Every 60 seconds it seems like it the http server loses connection with the tomcat instance, but immediately reconnects. Is this something that can be turned off?
When I connect directly to one of the tomcat instances I never drop connection. Only through the http server.
Upvotes: 0
Views: 2791
Reputation: 1487
Increase the value of the Timeout directive in your httpd.conf file. The default value is 60.
Upvotes: 1