Click here to Skip to main content
15,886,067 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi all please diagnose the problem..........




XML
Log Name:      System
Source:        Microsoft-Windows-WAS
Date:          11/15/2014 6:58:36 AM
Event ID:      5013
Task Category: None
Level:         Warning
Keywords:      Classic
User:          N/A
Computer:      ip-0A29ADB6
Description:
A process serving application pool 'DefaultAppPool' exceeded time limits during shut down. The process id was '2952'.
Event Xml:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
  <System>
    <Provider Name="Microsoft-Windows-WAS" Guid="{524B5D04-133C-4A62-8362-64E8EDB9CE40}" EventSourceName="WAS" />
    <EventID Qualifiers="32768">5013</EventID>
    <Version>0</Version>
    <Level>3</Level>
    <Task>0</Task>
    <Opcode>0</Opcode>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2014-11-15T13:58:36.000000000Z" />
    <EventRecordID>4686334</EventRecordID>
    <Correlation />
    <Execution ProcessID="0" ThreadID="0" />
    <Channel>System</Channel>
    <Computer>ip-0A29ADB6</Computer>
    <Security />
  </System>
  <EventData>
    <Data Name="AppPoolID">DefaultAppPool</Data>
    <Data Name="ProcessID">2952</Data>
    <Binary>
    </Binary>
  </EventData>
</Event>
Posted

Did you look at the MSDN documentation? The cause and resolutions are clearly explained:

http://support.microsoft.com/kb/2634635[^]
 
Share this answer
 
From that, we can't tell much, if anything.
When you get problems like this, start by Googling the error message:
Google: "A process serving application pool 'DefaultAppPool' exceeded time limits during shut down."[^]
The first hit is MSDN: http://support2.microsoft.com/kb/2634635[^] which tlaks about the error, why you get it and what you can do.

It's not that helpful in this specific case, because basically what it says is "debug your application" - but it does suggest some things that may be wrong with your code.

Certainly, we can do no more!
 
Share this answer
 
Problem solved myself after 10 hour research over Google and testing.

Ans. Increase the ShutdownTimeLimit value

It is possible that the default ShutdownTimeLimit value was modified from its default value of 90 seconds. It can be expect that an application pool needs time to fully shut down, as any requests currently processing when the shutdown is initiated need to be given a certain amount of time to complete. Setting the ShutdownTimeLimit value too low may cause these erroneous event log warnings in high traffic web applications or in web applications that have requests that are expected to take some time to complete.

To modify the ShutdownTimeLimit value in IIS 6.0, please see the following documentation:

I have increase ShutdownTimeLimit value in IIS 6.0 from 90 sec. to 200 sec. heaving 4 GB RAM CPU
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900