Click here to Skip to main content
15,886,362 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hey all,

We have below warning in the event viewer that is thrown

A process serving application pool 'DefaultAppPool' failed to respond to a ping. The process id was 'XXXX'.

We have put the option of recycling the Application pool on hold has this contains many application in it . Meanwhile i would like to know what could be root cause for this issue also how do we aviod this .
Posted

1 solution

First of all you should not be using same AppPool for all your web applications/websites. If one web application crashes, it will recycle the app pool which will make all the other application to restart, so users will lose their session information on the server.

Now if any fault occurs IIS will restart the AppPool to recover from it. now if you have disabled it, it will not come out of the fault.

Also this is a very generic error, there is no specific cause for this. so you need to debug the cause using IIS Debug Diagnostics Tool[^]. this tool will generate detail log file, which will help you to identify the problem.

or you can create seperate app pool for each application and then assign to it, and see which one is not working, that application is causing the problem.
 
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