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.

  • 相关阅读:
    MySQL 主从复制与读写分离概念及架构分析
    删除优先级
    原来的ALL IN ONE架构,快速的演进成为SOA架构
    a=a+1 ++a 效率比较
    Myers–Briggs_Type_Indicator 迈尔斯布里格斯类型指标(MBTI)
    事大众而数摇之,则少成功;藏大器而数徙之,则多败伤
    int float 的具体的取值范围取决于具体的机器 整数除法舍位 整形(int)也可以用于存储字符型数据
    英特尔和 Google 的 OKR 制度与我们一般所说的 KPI 有什么不同?
    Net Promoter Score
    春节问候微信群发
  • 原文地址:https://www.cnblogs.com/Winston/p/1338188.html
Copyright © 2011-2022 走看看