Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Analyzing a core dump

Status
Not open for further replies.

gwichman

IS-IT--Management
Sep 10, 2002
199
US
What commands can one use to analyze a core dump? I've got a lotus notes app that's dying when i try to start it and hoping to shed some light as to why.
 
Will give the application or program caused the core file:
lquerypv -h /path_to_core_file 6b0 64

Will give the exact location of the binary or shell script which caused the core file:
strings /path_to_core_file | grep “_=”
 
root@aix-swdev:/local/notesdata# lquerypv -h /local/notesdata/core 6b0 64
000006B0 7FFFFFFF FFFFFFFF 7FFFFFFF FFFFFFFF |................|
000006C0 7FFFFFFF FFFFFFFF 7FFFFFFF FFFFFFFF |................|
000006D0 00120000 133F0A60 00000000 0000000F |.....?.`........|
000006E0 68747470 00000000 00000000 00000000 |http............|
000006F0 00000000 00000000 00000000 00000000 |................|
00000700 00000000 00000000 00000000 00000390 |................|
00000710 00000000 0000000B 00000000 0000038F |................|
root@aix-swdev:/local/notesdata# strings core | grep "_="
_=/opt/lotus/notes/latest/ibmpow/server


ok not terribly useful. The first one didnt seem to show what program caused the core file. I know what file creates the core file because i ran it and watched it happen =). What i don't know is why it's core dumping.. Everything seems to be setup correctly.
 
Unless you have the source so you can run dbx against it and find where it is failing, then the vendor will have to be involved to find the cause.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top