views:

201

answers:

3

Hi All,

I am getting crash when I stop my server. But I could not see any dump file for this crash. Why dump file is not getting created. If possible could any one let me know where dump file will be created.

Thanks Haranadh

A: 

First off: What "server" are you running? Host OS?

jasonnerothin
The server is apache server which is coded in C++, part of my project.
Haranadh
A: 

Hi Haranadh,

Here are some pointers:
http://support.microsoft.com/kb/235496
http://support.citrix.com/article/CTX118614

This one is cool too - lets you get a dump when you want one
http://support.microsoft.com/kb/244139

-Foredecker

Foredecker
+2  A: 

Intall Debugging Tools for Windows, before stop your server execute at cmd line:

"C:\Program Files\Debugging Tools for Windows (x86)\adplus" -pn process-name.exe -hang -o path-of-output-files

and the dump file is created for you.

lsalamon