Return-Path: Delivered-To: apmail-tomcat-users-archive@www.apache.org Received: (qmail 5741 invoked from network); 9 Jan 2007 15:52:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 9 Jan 2007 15:52:35 -0000 Received: (qmail 61001 invoked by uid 500); 9 Jan 2007 15:52:29 -0000 Delivered-To: apmail-tomcat-users-archive@tomcat.apache.org Received: (qmail 60973 invoked by uid 500); 9 Jan 2007 15:52:29 -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 60962 invoked by uid 99); 9 Jan 2007 15:52:29 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jan 2007 07:52:29 -0800 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of roland.lammel@gmail.com designates 66.249.82.224 as permitted sender) Received: from [66.249.82.224] (HELO wx-out-0506.google.com) (66.249.82.224) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jan 2007 07:52:19 -0800 Received: by wx-out-0506.google.com with SMTP id i26so8091882wxd for ; Tue, 09 Jan 2007 07:51:59 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:sender:to:subject:in-reply-to:mime-version:content-type:references:x-google-sender-auth; b=rHru+1H24g0UXoPZNlVZBCol7S82ReXzC6kkdqUDDV9GZyRK2Tg+kYwWNiHhRkfwzTvFeaKHaKiAxJAO7Paa3DrV1y95tD7ecsX2/EaM2Jo3SW1xkbpICSKssD+x2u+nI53CvFsc9ES5dQN2QQQMYsNPLnTND+NfMdh/sbHrElk= Received: by 10.90.93.6 with SMTP id q6mr3180046agb.1168357918846; Tue, 09 Jan 2007 07:51:58 -0800 (PST) Received: by 10.90.63.20 with HTTP; Tue, 9 Jan 2007 07:51:58 -0800 (PST) Message-ID: <9b51ffb30701090751y4b7ce21ak2c0befd0bfe21559@mail.gmail.com> Date: Tue, 9 Jan 2007 16:51:58 +0100 From: "Roland Lammel" Sender: roland.lammel@gmail.com To: "Tomcat Users List" Subject: Re: Tomcat5.5 webserver unstable In-Reply-To: <8232585.post@talk.nabble.com> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_68349_12414126.1168357918586" References: <8232585.post@talk.nabble.com> X-Google-Sender-Auth: a87f0ef302ba92d1 X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_68349_12414126.1168357918586 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline This looks more like your application(s) is keeping the threads busy. So tomcat is running out of free threads/workers to handle the incoming requests. You are either having a generic problem in your application where your application is not closing the request hence keeping the thread occupied, or simply been under heavy load where actually more than 200 requests had to be handled in a very short time (this could especially happen if you serve complex long loading pages and have high number of concurrent requests in that period). You could - increase the maxthreads for the connector in server.xml - decrease connectionTimeout / maxKeepAliveRequests of the connector in case clients are causing the issue - Try to find the application logic that does not end the request (or keeps hanging in the background doing some external data queries) Cheers +rl On 1/9/07, mocherla14 wrote: > > > EFFECT: > Tomcat server goes down now and then for no reason. > The GUI can not be accesed. > Problem has been facin even and then > > DESCRIPTION: > This is the line in the Catalina log file: > > Dec 5, 2006 11:33:07 AM org.apache.tomcat.util.threads.ThreadPool logFull > SEVERE: All threads (200) are currently busy, waiting. Increase maxThreads > (200) or check the servlet status > > > some soultions i had found but not sure > The threadlock is likely in whatever webapp you're running, or less likely > a > thread issue between your JDK and OS (which I would guess is Linux). As a > stopgap, you might try setting the thread timeout parameter (don't know > the > exact syntax offhand) to something fairly low so Tomcat will destroy any > hanging threads after a certain period of time. > > > plz kindly help with more deatiled answers. > -- > View this message in context: > http://www.nabble.com/Tomcat5.5-webserver-unstable-tf2944124.html#a8232585 > Sent from the Tomcat - User mailing list archive at Nabble.com. > > > --------------------------------------------------------------------- > To start a new topic, e-mail: users@tomcat.apache.org > To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org > For additional commands, e-mail: users-help@tomcat.apache.org > > -- Roland Lammel "Enjoy your job, make lots of money, work within the law. Choose any two." ------=_Part_68349_12414126.1168357918586--