J Burk
J Burk

Reputation: 11

Apache http server drops connection every 60 seconds

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

Answers (1)

Enrico Dias
Enrico Dias

Reputation: 1487

Increase the value of the Timeout directive in your httpd.conf file. The default value is 60.

Upvotes: 1

Related Questions