zoukankan      html  css  js  c++  java
  • 如何处理源dump文件的mscordacwks.dll文件与调试机上的版本不一致问题而无法使用extension cmd的问题

    问题描述:

    当抓取了问题机器上的managed application的dump文件之后, 而在另外一台机器上对该dump进行分析时。如果问题机器和目标机器的mscordacwks.dll版本不一致,则在 .load C:\Windows\Microsoft.NET\Framework\v2.0.50727\sos.dll之后目标机器上找不到正确的mscordacwks.dll而导致无法使用debugger extension command.

    例如随便键入一个extension command: !Threads

    收到的错误信息如下:

    *********************************************************************
    * Symbols can not be loaded because symbol path is not initialized. *
    *                                                                   *
    * The Symbol Path can be set by:                                    *
    *   using the _NT_SYMBOL_PATH environment variable.                 *
    *   using the -<symbol_path> argument when starting the debugger. *
    *   using .sympath and .sympath+                                    *
    *********************************************************************
    PDB symbol 
    for mscorwks.dll not loaded
    Failed to load data access DLL, 
    0x80004005
    Verify that 
    1) you have a recent build of the debugger (6.2.14 or newer)
                
    2) the file mscordacwks.dll that matches your version of mscorwks.dll is 
                    
    in the version directory
                
    3) or, if you are debugging a dump file, verify that the file 
                    mscordacwks_
    <arch>_<arch>_<version>.dll is on your symbol path.
                
    4) you are debugging on the same architecture as the dump file.
                    For example, an IA64 dump file must be debugged on an IA64
                    machine.

    You can also run the debugger command .cordll to control the debugger
    's
    load of mscordacwks.dll.  .cordll -ve --l will do a verbose reload.
    If that succeeds, the SOS command should work on retry.

    If you are debugging a minidump, you need to make sure that your executable
    path 
    is pointing to mscorwks.dll as well.

    用.cordll看一看,feedback如下:

    CLR DLL status: ERROR: Unable to load DLL mscordacwks_x86_x86_2.0.50727.1433.dll, Win32 error 0n2

    说明抓取的dump文件所需要的mscordacwks_x86_x86_2.0.50727.1433.dll文件找不到。

    解决方法:

    用.cordll -ve -u -l看看

    CLRDLL: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscordacwks.dll:2.0.50727.1434 f:0
    doesn
    't match desired version 2.0.50727.1433 f:0
    CLRDLL: Unable to find mscordacwks_x86_x86_2.0.50727.1433.dll by mscorwks search
    CLRDLL: Unable to find 
    'mscordacwks_x86_x86_2.0.50727.1433.dll' on the path
    CLRDLL: Unable to find mscorwks.dll by search
    CLRDLL: ERROR: Unable to load DLL mscordacwks_x86_x86_2.
    0.50727.1433.dll, Win32 error 0n2
    CLR DLL status: ERROR: Unable to load DLL mscordacwks_x86_x86_2.
    0.50727.1433.dll, Win32 error 0n2

    原来调试机器上的mscordacwks.dll和所抓取dump时的mscordacwks.dll所需要的dll版本不一致。 怎么办?很简单,就是把发生问题的客户机上的mscordackws.dll文件copy过来,然后将其rename为其所需要的文件名,并将其放置到适当的search path下。这里最适合的search path就是windbg安转文件夹下了。

    然后用.cordll -ve -u -l 看看,结果如下:

    CLRDLL: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscordacwks.dll:2.0.50727.1434 f:0
    doesn
    't match desired version 2.0.50727.1433 f:0
    CLRDLL: Unable to find mscordacwks_x86_x86_2.0.50727.1433.dll by mscorwks search
    CLRDLL: Loaded DLL mscordacwks_x86_x86_2.
    0.50727.1433.dll
    CLR DLL status: Loaded DLL mscordacwks_x86_x86_2.
    0.50727.1433.dll

    说明按照几个search path,终于最后搜索成功,找到所需dll.

  • 相关阅读:
    阿里IM技术分享(六):闲鱼亿级IM消息系统的离线推送到达率优化
    IM开发基础知识补课(十):大型IM系统有多难?万字长文,搞懂异地多活!
    长连接网关技术专题(六):石墨文档单机50万WebSocket长连接架构实践
    手把手教你实现网页端社交应用中的@人功能:技术原理、代码示例等
    跟着源码学IM(九):基于Netty实现一套分布式IM系统
    网络编程懒人入门(十三):一泡尿的时间,快速搞懂TCP和UDP的区别
    探探的IM长连接技术实践:技术选型、架构设计、性能优化
    直播系统聊天技术(六):百万人在线的直播间实时聊天消息分发技术实践
    基于实践:一套百万消息量小规模IM系统技术要点总结
    Datafram 实现作为正文发送邮件
  • 原文地址:https://www.cnblogs.com/Winston/p/1338188.html
Copyright © 2011-2022 走看看