Joe Hansen wrote:
Rainer,

Here are the KeepAlive values in httpd.conf:

KeepAlive Off
MaxKeepAliveRequests 100
KeepAliveTimout 15

Well, since you have "KeepAlive Off", the other 2 do not matter.
But as such, it means that each request of each browser is going to create a new connection to the webserver, just for that one request. So if there is a page with 10 <img> links inside, you will end up establishing (and tearing down) a total of 11 TCP connections (one for the main page, one each for each <img>).
That may or may not have a bearing on the situation you are seeing.



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to