Можно ли отладить аварийный дамп IIS win2003 с помощью windbg на Windows XP? - PullRequest
2 голосов
/ 27 мая 2011
  1. Я скачал символы для сервера Windows2003 отсюда http://msdn.microsoft.com/en-us/windows/hardware/gg463028

  2. Я сделал то, что описано здесь - http://blogs.msdn.com/b/johan/archive/2007/11/13/getting-started-with-windbg-part-i.aspx. Но когда я пытаюсь запустить! Threadpool, он говорит

0:024> !threadpool
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___.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 -u -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.

1 Ответ

1 голос
/ 27 мая 2011

Это происходит потому, что на вашем компьютере установлена ​​дополнительная версия .net, отличная от серверной. Я не имею в виду .net 3.5 против 4.0, я имею в виду версию a.b.c.d.dll против e.f.g.h.dll.

Вам необходимо получить копию c: \ windows \ microsoft.net \ framework \ v2.0.50727 \ mscordacwks.dll с сервера windows2003.

Затем следуйте инструкциям в этом сообщении: http://blogs.msdn.com/b/dougste/archive/2009/02/18/failed-to-load-data-access-dll-0x80004005-or-what-is-mscordacwks-dll.aspx.

Попробуйте сначала:

!sym noisy 
.symfix c:\mylocalsymcache 
.cordll -ve -u -l

Если это не сработает, вы переименуете файл mscordacwks.dll, скопируете его в расположение символов, указанное на вашем компьютере, и повторите попытку.

Пожалуйста, не перезаписывайте файл на вашем компьютере файлом с сервера Windows 2003. :)

...