Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Application pool 'DefaultAppPool' is being automatically disabled due to a series of failures in the process(es) serving that application pool

Tags:

iis-7

Log Name:      System
Source:        Microsoft-Windows-WAS
Date:          13.06.2012 08:34:45
Event ID:      5002
Task Category: None
Level:         Error
Keywords:      Classic
User:          N/A
Computer:      WIN-QU022VN756J
Description:
Application pool 'DefaultAppPool' is being automatically disabled due to a series of failures in the process(es) serving that application pool.

Please provide near solution for this problem. I will appreciate the suggestion

like image 950
Naresh Kumar Avatar asked Jun 13 '12 08:06

Naresh Kumar


4 Answers

IIS comes with a feature called Rapid-Fail Protection. By default an App Pool is configured to become disabled if a worker in the pool crashes 5 times within a 5 minute span.

The thresholds of this setting are able to be modified by right clicking on the App Pool going to Advanced Settings and modifying the 'Rapid-Fail Protection' properties. However, this event indicates that there is likely a serious issue in your application that needs to be resolved.

like image 118
user942620 Avatar answered Nov 11 '22 13:11

user942620


I got tensed about this issue and finally i got solved.

Please make sure that the following option is correct in Advance Settings in Application pool.

Application Pools>Default Application Pool > Right click and select Advance Settings.

And then check whether the option "Enable 32 bit applications" has been set as "False". It should be False

I got solved by did the above change.

like image 41
Arockia Avatar answered Nov 11 '22 14:11

Arockia


It's a registry permission issue. This should help: http://support.microsoft.com/kb/885654

You might also need to add read/write permissions for NT AUTHORITY\NETWORK SERVICE (or NT AUTHORITY\SYSTEM or the account used by your application pool) to c:\Windows\TEMP. See http://social.technet.microsoft.com/Forums/en-US/winservergen/thread/176e9b6d-7b1b-4667-b55e-330bec133f37/

like image 41
Ger Avatar answered Nov 11 '22 14:11

Ger


I Got this error when i installed URL Rewrite Module, install correct URL Rewrite Module to fix this. To verify this error cause of URL Rewrite Module check events logs .

  1. windows logs>> System>> Click on recent Error, In Error details it will show "Application pool 'DefaultAppPool(or YourApplicationpool)' is being automatically disabled due to a series of failures in the process(es) serving that application pool."
  2. Windows logs>> Application>> click on recent error, In error details it will show "The Module DLL 'C:\Windows\system32\inetsrv\rewrite.dll' failed to load. the data is the error."

I hope this will help You.

like image 24
Santosh P Avatar answered Nov 11 '22 13:11

Santosh P