Tag: minidump

如何处理WinDbg中的“SOS版本与您正在debugging的CLR版本不匹配”?

我遇到了一些我的应用程序的问题。 这是在Windows 2003 Server(x86)的IIS6下运行的基于wcf的应用程序: 在事件日志中,我从“W3SVC-WP”源(EventID = 2262)得到这样的错误: ISAPI 'C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll' reported itself as unhealthy for the following reason: 'Deadlock detected'. 我正在试图弄清楚发生了什么事。 我已经build立了创build这个知识库中描述的孤儿工作进程的转储。 发生死锁时创build一个小型转储。 然后我用这个小转储来试着了解发生了什么。 这是我卡住了。 我运行WinDbg x86,打开我的转储,然后: 0:037> .loadby sos clr 0:037> .sympath SRV*c:\temp\symbols*http://msdl.microsoft.com/download/symbols Symbol search path is: SRV*c:\temp\symbols*http://msdl.microsoft.com/download/symbols Expanded Symbol search path is: srv*c:\temp\symbols*http://msdl.microsoft.com/download/symbols 0:037> !clrstack The version of SOS does not match the version […]