如何调试崩溃转储文件? [英] How to debug Crashed Dump File?

查看:373
本文介绍了如何调试崩溃转储文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在我的Windows Server 2008的它创造转储文件上运行调试诊断工具。
因为我的asp.net应用程序给出了一个例外,时有时无。

I run Debug Diagnostic tool on my windows server 2008. It created dump files. Because my asp.net application gives an exception time to time.

我需要一步的指令如何调试转储文件的步骤。我需要调试在生产服务器或本地?我需要做什么来呢?如何配置?

I need step by step instruction how to debug dump file. Do I need to debug in production server or locally? What do I need to have? How to configure?

如何确定应用问题?

是否有任何其他的方式怎么读转储文件?

Is there any other ways how to read Dump files?

下面是我找到的职位有大约转储文件pretty很好的解释,但他们并没有解释调试部分

Here is the post I found it has pretty good explanation about dump files but they didn't explain the debugging part

<一个href=\"http://blogs.msdn.com/b/tess/archive/2009/03/20/debugging-a-net-crash-with-rules-in-debug-diag.aspx\" rel=\"nofollow\">http://blogs.msdn.com/b/tess/archive/2009/03/20/debugging-a-net-crash-with-rules-in-debug-diag.aspx

推荐答案

所有你需要调试转储WinDbg的,这可以从的微软以及SOS其中附带的框架。

All you need to debug the dump is WinDbg, which can be downloaded from Microsoft and SOS which ships with the framework.

启动WinDbg中并加载从文件菜单中转储文件。这会告诉你有关转储一些初步信息。这会告诉你你在寻找的那种转储。

Start WinDbg and load the dump file from the File menu. This will tell you some initial information about the dump. This will tell you the kind of dump you're looking at.

通过使用命令设置符号 .symfix

Set up symbols by using the command .symfix.

SOS加载使用命令 .loadby SOS CLR (.NET 4)或 .loadby索斯mscorwks ( $ p $ .NET的pvious版本)。

Load SOS by using the command .loadby sos clr (.NET 4) or .loadby sos mscorwks (previous versions of .NET).

使用!线程命令看看在​​转储文件的主题。请注意在最右边的异常列。如果您看到此列中的任何异常使用 PE&LT;!EXCEPTION对象&gt; 命令来获取详细信息。

Take a look at the threads in the dump file using the !threads command. Notice the exception column on the far right. If you see any exceptions in this column use the !pe <EXCEPTION OBJECT> command to get the details.

有关更多信息阅读一些关于苔丝博客的。

For additional info read some of the posts on Tess' blog.

这篇关于如何调试崩溃转储文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆