In Development Last updated:
Share on:
Jira Software is the #1 project management tool used by agile teams to plan, track, release, and support great software.

Lately, I encountered an issue where IIS kept crashing every minute due to unhandled exceptions. There was nothing much in application logs except event viewer, which says application pool “xyz” terminated unexpectedly.

This was happening in IIS 6 with .Net 4.

Are you experiencing similar issue?

The reason IIS keep crashing caused by unhandled exception is because the default policy for an unhandled exception has changed in the .Net framework 2.0 and later version.

The behavior of this policy is to end the worker process.

Possible fixes

To fix this permanently, a developer must handle all exceptions in the application.

As a workaround, you can change unhandled exception policy back to legacy (.Net framework 1.x)   

  • Login into problematic IIS server
  • Find which version of .Net you are using
  • Go to below folder
%WINDIR%Microsoft.NETFramework$.Net_Version
  • Take a backup of Aspnet.config file
  • Modify or add if doesn’t exist following
<configuration>
<runtime>         
<legacyUnhandledExceptionPolicy enabled="true" />     
</runtime> 
</configuration>
  • Restart IIS Application pool

You will notice, IIS will prevent crashing, and you are back in business.

If you want to be master in IIS administration, then check out this course by Hassan Aboul Hassan.

Share on:
  • Chandan Kumar
    Author
    Chandan Kumar is a seasoned technology enthusiast and entrepreneur passionate about empowering businesses and individuals globally. As the founder of Geekflare, a leading technology publication, Chandan has spearheaded the development…

Thanks to our Sponsors

More great readings on Development

Power Your Business

Some of the tools and services to help your business grow.
  • The text-to-speech tool that uses AI to generate realistic human-like voices.

    Try Murf AI
  • Web scraping, residential proxy, proxy manager, web unlocker, search engine crawler, and all you need to collect web data.

    Try Brightdata
  • Monday.com is an all-in-one work OS to help you manage projects, tasks, work, sales, CRM, operations, workflows, and more.

    Try Monday
  • Intruder is an online vulnerability scanner that finds cyber security weaknesses in your infrastructure, to avoid costly data breaches.

    Try Intruder