- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Get information about core
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
08-28-2001 09:46 AM
08-28-2001 09:46 AM
Get information about core
how can i obtain information of core file ?
(about crash, etc).
MDF
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2001 09:58 AM
08-28-2001 09:58 AM
Re: Get information about core
You can do:
strings core | more
or
what core
Here is a thread that discusses analyzing core files:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,1150,0x2ec679bffde7d4118fef0090279cd0f9,00.html
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2001 10:24 AM
08-28-2001 10:24 AM
Re: Get information about core
If it is about the core files dumped by the application, you can do a 'file core' file and
you will get the information about what caused it to get dumped and the process that caused the core.
You can use tools like DDE to debug the core but I will leave it to the App Admins.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2001 11:27 AM
08-28-2001 11:27 AM
Re: Get information about core
MDF
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2001 12:15 PM
08-28-2001 12:15 PM
Re: Get information about core
against /usr/include/sys/signal.h for better explanation of the signals.
To analyze the core, you can use adb command. It's very difficult to get exact reason why it core dumped. Mostly due to improper application code.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2001 12:28 PM
08-28-2001 12:28 PM
Re: Get information about core
How can i analyze core file with adb?
MDF
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2001 12:58 PM
08-28-2001 12:58 PM
Re: Get information about core
http://us-support2.external.hp.com/cki/bin/doc.pl/sid=4029e74705574d97ec/screen=ckiSearchResults
You won't get much out of the core unless you know how it was compiled. Your best bets are to use gdb, dde, or xdb. The document above help explains how.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2001 02:27 PM
08-28-2001 02:27 PM
Re: Get information about core
Here is a link for adb tutorial (kind of old)
http://docs.hp.com/hpux/pdf/92432-90006.pdf
-Regards
Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2001 06:35 PM
08-28-2001 06:35 PM
Re: Get information about core
file core
Now the reason might be a data alignment problem or a particular signal. That will not tell what to change in the program to get it to work properly--for that, you need a programmer and tools.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2001 06:43 PM
08-28-2001 06:43 PM
Re: Get information about core
You will get a good hint from 'file core' however.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2001 05:51 AM
08-29-2001 05:51 AM
Re: Get information about core
What I'm trying to say, is unless it is a frequent problem I wouldn't spend to much time on it. Yes look at the core and get what information you can, and log it (to determine frequency of offense).
Just my 2 cents worth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2001 04:20 AM
09-08-2001 04:20 AM
Re: Get information about core
gdb
or
gdb -c core
But before that compile the program with the
-g option of cc.
Kapil