Link to home
Start Free TrialLog in
Avatar of suresh pondicherry
suresh pondicherryFlag for United States of America

asked on

Bring application pool automatically when it get stopped in iis

Hi ,
How to bring up application pool automatically  in windows server 2012 IIS ver 8.0 whenever pool stopped due to 503 error -service unavailable. Though this symptom due to application error, like to stop showing 503 in screen , instead bring pool up .

Thanks!
Avatar of Hello There
Hello There

You have a few options here:

You can set a recycling interval for the application pool.
https://docs.microsoft.com/en-us/iis/configuration/system.applicationhost/applicationpools/add/recycling/periodicrestart/

You can track down the EventID and use Task Scheduler to run a repair script if you hit the trigger.


However, the question is, why you need that? Is the website failing often?
ASKER CERTIFIED SOLUTION
Avatar of dfke
dfke

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of suresh pondicherry

ASKER

Thanks all!