- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- analyze core dump
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2003 04:27 AM
07-03-2003 04:27 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2003 04:33 AM
07-03-2003 04:33 AM
Re: analyze core dump
strings core | more
You can get some useful information from that.
If oracle or some other application creates a dump, the same command may or may not be effective. You have to see the vendor for that.
Kernel problems can create dumps, but if they are serious, the box wont boot in the first place, you'll get a kernel panic at boot time.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2003 04:33 AM
07-03-2003 04:33 AM
Re: analyze core dump
everything can do a dump.
When is the kernel, your system does a "panic" and reboot.
To find the application that generates the dump,
usa the command "file" against the core.
Core can be anywhere.
To analyze a dump, there was a nice thread full of instruction...
i will search it.
HTH,
Massimo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2003 04:40 AM
07-03-2003 04:40 AM
Re: analyze core dump
A program can core dump, leaving a file named core, in a directory usually where it was started from or in certain applications in specified directories. and example is where cmcld (serviceGuard daemon) core dumps and leaves a core file in /var/adm/cmcluster
You can look at these files using :
what
file
strings
A kernel or system panic will create a core dump, this normally goes into /var/adm/crash, and consists of mutiple file.
If you have had one of these, then you have had a serious problem at some time.
These normally need analysing by your local HP Response Centre
Hope that helps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2003 04:55 AM
07-03-2003 04:55 AM
Re: analyze core dump
All applications will core dump when encountering SIGSEGV and SIGBUS errors provided they have permission to dump.
You can analyze these core dumps through many commands.
file core will give which application and why
strings will print out all the info in the core which will be the superset of executable. So there will be too much information.
what gives also the necessary info.
kernel dumps and they can be analyzed to the good by q4.
applications dumps can be analyzed by gdb. It can pinpoin the error if the debug flag is set. You can print the stack trace to get to the exact place where it got dumped.
HTH,
Umapathy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2003 05:03 AM
07-03-2003 05:03 AM
Re: analyze core dump
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xc4db506d69a7d711abdc0090277a778c,00.html
Hope it help you a bit.
twang
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2003 05:50 AM
07-03-2003 05:50 AM
SolutionA good tool in HP-UX for analyze core dump is q4. You can get the English version manual of q4 here:
http://hpux.0451.net/download/q4docs.zip
-ux
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2003 01:10 PM
07-03-2003 01:10 PM
Re: analyze core dump
Please post a procdure for using it on core dumps, I'd like to know how.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2003 01:15 PM
07-03-2003 01:15 PM
Re: analyze core dump
For the begin you can use the what command
and for more you have the q4 script
to debug the core dump.
More info about the q4 is on the
docs.hp.com
Caesar