Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IIS 7.5: problem with Application pool

several time in day my Application pool is stopped with following error:

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

How to resolve this?

thanks, for the any advice.

like image 995
Andrei Andrushkevich Avatar asked Mar 30 '11 12:03

Andrei Andrushkevich


3 Answers

This is because your application pool is crashing more than 5 times in 5 minutes [default settings - Rapid Fail]

Instead of disabling Rapid Fail, you should consider taking Crash Dumps and try to find out the root cause. http://blogs.msdn.com/b/rahulso/archive/2006/03/02/what-is-a-crash-technically-in-asp-net-and-what-to-do-if-it-happens.aspx

like image 84
Rahul Soni Avatar answered Oct 22 '22 21:10

Rahul Soni


I had the same problem and after some struggle I realized it was caused by a change in my domain password that runs the application pool. Going to the application pool > Advanced Settings > Process Model > Identity and set it with the new password.

like image 23
peter n Avatar answered Oct 22 '22 20:10

peter n


You may not have the same exception causing the application pool to recycle, but this answer should address your situation as well: A process serving application pool 'Classic .NET AppPool' suffered a fatal communication error with the Windows Process Activation Service. HTTP Error 503

The gist of it is that something in your application is causing the app pool to keep recycling itself. You'll need to determine what is throwing so many exceptions. After you've fixed the cause of the exceptions, your app pool should run without recycling itself to the point where it hits the Rapid Fail Protection limit.

like image 21
Jacob Ewald Avatar answered Oct 22 '22 21:10

Jacob Ewald