IIS crashes when serving an ASP.NET application under heavy load. How to troubleshoot it? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T21:50:37Zhttp://stackoverflow.com/feeds/question/62720http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/62720/iis-crashes-when-serving-an-asp-net-application-under-heavy-load-how-to-troubles2IIS crashes when serving an ASP.NET application under heavy load. How to troubleshoot it?caustic2008-09-15T13:12:55Z2008-10-10T23:31:49Z
<p>I am working on an ASP.NET web application, it seems to be working properly when I try to debug it in Visual Studio. However when I emulate heavy load, IIS crashes without any trace -- log entry in the system journal is very generic, "The World Wide Web Publishing service terminated unexpectedly. It has done this 4 time(s)."
How is it possible to get more information from IIS to troubleshoot this problem?</p>
http://stackoverflow.com/questions/62720/iis-crashes-when-serving-an-asp-net-application-under-heavy-load-how-to-troubles/62732#627320Answer by Joel Coehoorn for IIS crashes when serving an ASP.NET application under heavy load. How to troubleshoot it?Joel Coehoorn2008-09-15T13:13:57Z2008-09-15T13:13:57Z<p>The key is <em>"without any trace"</em>. You need to put your own trace logging in to create some chatter. Then you'll be able to spot where the chatter stops.</p>
http://stackoverflow.com/questions/62720/iis-crashes-when-serving-an-asp-net-application-under-heavy-load-how-to-troubles/62741#627413Answer by Gulzar for IIS crashes when serving an ASP.NET application under heavy load. How to troubleshoot it?Gulzar2008-09-15T13:14:38Z2008-09-15T13:21:20Z<p>Crash dump of <a href="http://blogs.msdn.com/tess/archive/tags/ASP.NET/default.aspx" rel="nofollow">asp.net process</a> should give you <a href="http://blogs.msdn.com/tess/pages/net-debugging-demos-information-and-setup-instructions.aspx" rel="nofollow">tons of info</a>..If you want to quickly get some info on why the process got recycled, <a href="http://weblogs.asp.net/scottgu/archive/2005/12/14/433194.aspx" rel="nofollow">try this tip from Scott Gu</a>..
<a href="http://odetocode.com/Blogs/scott/archive/2005/11/01/2402.aspx" rel="nofollow">Health monitoring</a> feature of asp.net 2.0 is also worth looking at..</p>
http://stackoverflow.com/questions/62720/iis-crashes-when-serving-an-asp-net-application-under-heavy-load-how-to-troubles/62756#627561Answer by Bloodhound for IIS crashes when serving an ASP.NET application under heavy load. How to troubleshoot it?Bloodhound2008-09-15T13:15:28Z2008-09-15T13:15:28Z<p>ASP.NET Tracing...
<a href="http://www.beansoftware.com/ASP.NET-Tutorials/Tracing-ASP.NET.aspx" rel="nofollow">http://www.beansoftware.com/ASP.NET-Tutorials/Tracing-ASP.NET.aspx</a></p>
http://stackoverflow.com/questions/62720/iis-crashes-when-serving-an-asp-net-application-under-heavy-load-how-to-troubles/65553#655533Answer by Sacha for IIS crashes when serving an ASP.NET application under heavy load. How to troubleshoot it?Sacha2008-09-15T18:43:23Z2008-09-15T20:26:01Z<p>Download Debugging tools for Windows:
<a href="http://www.microsoft.com/whdc/DevTools/Debugging/default.mspx" rel="nofollow">http://www.microsoft.com/whdc/DevTools/Debugging/default.mspx</a></p>
<p>Debugging Tools for Windows has has a script (ADPLUS) that allows you to create dumps when a process CRASHES:
<a href="http://support.microsoft.com/kb/286350" rel="nofollow">http://support.microsoft.com/kb/286350</a></p>
<p>The command should be something like (if you are using IIS6):</p>
<pre><code>cscript adplus.vbs -crash -pn w3wp.exe
</code></pre>
<p>This command will attach the debugger to the worker process. When the crash occurs it will generate a dump (a *.DMP file).</p>
<p>You can open it in WinDBG (also included in the Debugging Tools for Windows). File > Open Crash dump...</p>
<p>By default, WinDBG will show you (next to the command line) the thread were the process crashed.</p>
<p>The first thing you need to do in WinDBG is to load the .NET Framework extensions:</p>
<pre><code>.loadby sos mscorwks
</code></pre>
<p>then, you will display the managed callstack:</p>
<pre><code>!clrstack
</code></pre>
<p>if the thread was not running managed code, then you'll need to check the native stack:</p>
<pre><code>kpn 200
</code></pre>
<p>This should give you some ideas. To continue troubleshooting I recommend you read the following article:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms954594.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms954594.aspx</a></p>