|
I have a core dump file from a process that has probably a file descriptor leak (it opens files and sockets but apparently sometimes forgets to close some of them). Is there a way to find out which files and sockets the process had opened before crashing...
Started by oliver on
, 8 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Edit: I don't think you can get the information from the core; at most it will have the file descriptors somewhere, but this still doesn'....
Depending on how makes.
A core dump is a copy of the memory the process had access to when crashed.
|
|
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
Started by Haranadh on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Tools for Windows (x86)\adplus" -pn process-name.exe -hang -o path-of-output-files
and the dump file you get a dump when you want one
http://support.microsoft.com/kb/244139
-Foredecker
Intall.
|
|
I took a snapshot of the jquery.js file and jquery-ui files that I use and dumped them into a giant .js file with all of the other .js files that I use for my site.
When I do just this with no minfication/packing, the files stop working and I get "recursion...
Started by MikeN on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Browser to compile your file using Rhino compiler ( http://www.mozilla.org/rhino/ )
java -cp build/js.jar.
Probably your JavaScript files have some syntax errors.
Huge 300k JS file one very page.
|
Ask your Facebook Friends
|
When I dump a Sybase database, it doesn't seem to matter whether there's data in the tables or not, the file size is the same. I've been told that this is down to the fact that my dump file is binary and not logical, so the file of the dump file is based...
Started by ninesided on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
No special commands....
You just need to peform a little testing to find an appropriate balance of size versus performance .
Is: dump database database_name to file_name [ with compression=compress_level]
compress_level running the dump.
|
|
How to generate the Symbols file of a PowerBuilder program for dump analysis?
Started by Daniel Silveira on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
That said, the dump will usually only be useful if you.
If you need a stack dump, have you thought dump when/if your application dies.
Usually that helps us if we have missing deployables, etc .
|
|
I created a dump file after my VS 2008 crashed by using procdump . I suspect that this is a Resharper problem, so I need to generate enough information for Resharper to fix.
Now, when I open my Windbg, I need to set Symbol File Path. According to the ...
Started by Ngu Soon Hui on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can have a symbol path like c:\applicationpath; c:\librariespath; SRV*c:\localcache* http://someserver ; SRV*c:\localcache* http://somotherserver... .
Use .sympath+ <newpath> to add to the existing symbol path .
The symbol path can contain multiple locations.
|
|
Is the an easy way of finding out the host name of a machine than generated a user mode dump file via WinDbg?
Or at least any piece of identifying information to try and confirm that two dump files came from the same system.
Started by Rob Walker on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
From debugger.chm:
Finding the Computer Name in a Kernel-Mode Dump File
If you need to determine Address in a Kernel-Mode Dump File
To determine the IP address of the computer on which the crash dump that depending on....
|
|
Are there any differences between windows xp dump file and windows 7 dump file.
Answer Snippets (Read the full thread at microsoft):
Windows xp surely render some....
Best Regards, Why does it matter? The format of the dump file i want to analyse the dump file of windows 7 for any sensitive information it may contain.
Thanks for your understanding.
Support.
|
|
I'm looking for a little shell script that will take anything piped into it, and dump it to a file.. for email debugging purposes. Any ideas?
Started by Alex Fort on
, 12 posts
by 12 people.
Answer Snippets (Read the full thread at stackoverflow):
In fact to a file in any shell using the > character:
echo "hello, world!" > the-file.txt
Huh? I guess, I don't get the question?
Can't ....
You're not alone in needing something similar..
To output, while also logging it to a file.
|
|
While running a C program , It says "(core dumped)" but I can't see any files under current path.
I have set ulimit -c unlimited and verified it with ulimit -a
I also tried to find file named "core" but didn't get the core dumped file? Any help , where...
Started by lakshmipathi on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
2) For some weird reason the core dump isn't named core.* You a typical core ....
Instead of writing the core dump to disk to? If not, it cannot create the core dump.
To the standard input of that program instead of to a file.
|