Return-Path: Delivered-To: apmail-tomcat-users-archive@www.apache.org Received: (qmail 1671 invoked from network); 5 Oct 2009 19:05:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 5 Oct 2009 19:05:52 -0000 Received: (qmail 85707 invoked by uid 500); 5 Oct 2009 19:05:48 -0000 Delivered-To: apmail-tomcat-users-archive@tomcat.apache.org Received: (qmail 85649 invoked by uid 500); 5 Oct 2009 19:05:48 -0000 Mailing-List: contact users-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Users List" Delivered-To: mailing list users@tomcat.apache.org Received: (qmail 85638 invoked by uid 99); 5 Oct 2009 19:05:48 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Oct 2009 19:05:48 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of aw@ice-sa.com designates 212.85.38.228 as permitted sender) Received: from [212.85.38.228] (HELO tor.combios.es) (212.85.38.228) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Oct 2009 19:05:38 +0000 Received: from localhost (localhost [127.0.0.1]) by tor.combios.es (Postfix) with ESMTP id 64B4122608D for ; Mon, 5 Oct 2009 21:05:17 +0200 (CEST) Received: from tor.combios.es ([127.0.0.1]) by localhost (tor.combios.es [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id OTmD1qL00F+L for ; Mon, 5 Oct 2009 21:05:17 +0200 (CEST) Received: from [192.168.245.129] (p549EB266.dip0.t-ipconnect.de [84.158.178.102]) by tor.combios.es (Postfix) with ESMTPA id 139FB226087 for ; Mon, 5 Oct 2009 21:05:16 +0200 (CEST) Message-ID: <4ACA435B.1090301@ice-sa.com> Date: Mon, 05 Oct 2009 21:04:59 +0200 From: =?ISO-8859-1?Q?Andr=E9_Warnier?= Reply-To: Tomcat Users List User-Agent: Thunderbird 2.0.0.23 (Windows/20090812) MIME-Version: 1.0 To: Tomcat Users List Subject: Re: java.lang.OutOfMemoryError: Java heap space References: <2185441d0910031107y7d98d4belc1ff51f2e1d5a23a@mail.gmail.com> <4AC796ED.4000009@kippdata.de> <2185441d0910041245g4cc65714y307585e55a57e93d@mail.gmail.com> <2185441d0910041317n1c143069n949e2ba1588cb443@mail.gmail.com> <4AC91ECF.8020703@ice-sa.com> <2185441d0910051047v20a7a8ees4f60cd0c63c6cc7a@mail.gmail.com> In-Reply-To: <2185441d0910051047v20a7a8ees4f60cd0c63c6cc7a@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org 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 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 ). That may or may not have a bearing on the situation you are seeing. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org For additional commands, e-mail: users-help@tomcat.apache.org