I have a process in linux that's getting a segmentation fault. How can I tell it to generate a core dump when it fails?
|
This depends on what shell you are using. If you are using bash, then the ulimit command controls several settings relating to program execution, such as whether you should dump core. If you type
then that will tell bash that its programs can dump cores of any size. You can specify a size such as 52M instead of unlimited if you want, but in practice this shouldn't be necessary since the size of core files will probably never be an issue for you. In tcsh, you'd type
|
|||||||||||||||||||||
|
|
What I did at the end was attach gdb to the process before it crashed, and then when it got the segfault I executed the |
||||
|
|
|
Maybe you could do it this way, this program is a demonstration of how to trap a segmentation fault and shells out to a debugger (this is the original code used under AIX) and prints the stack trace up to the point of a segmentation fault. You will need to change the
You may have to additionally add a parameter to get gdb to dump the core as shown here in this blog here. |
||||
|
|
|
There are more things that may influence the generation of a core dump. I encountered these:
There are more situations which may prevent the generation that are described in the man page - try |
||||
|
|
|
By default you will get a core file. Check to see that the current directory of the process is writable, or no core file will be created. |
|||||||||||||
|
|
In order to activate the core dump do the following: 1.In /etc/profile comment the line:
2.In /etc/security/limits.conf comment out the line:
3.execute the cmd "limit coredumpsize unlimited" and check it with cmd limit:
4.to check if the corefile gets written you can kill the relating process with cmd "kill -s SEGV " (should not be needed, just in case no core file gets written this can be used as a check):
Once the corefile has been written make sure to deactivate the coredump settings again in the relating files (1./2./3.) ! |
|||
|
|
|
As explained above the real question being asked here is how to enable core dumps on a system where they are not enabled. That question is answered here. If you've come here hoping to learn how to generate a core dump for a hung process, the answer is
if gcore is not available on your system then
Don't use kill -SEGV as that will often invoke a signal handler making it harder to diagnose the stuck process |
||||
|
|