- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- need to read core file
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
03-11-2002 03:55 PM
03-11-2002 03:55 PM
i need help in reading a core file. i have an oracle instance that throws a core file/dump everytime it starts or stops. even if it throws a core file, it starts/stops and runs fine. can somebody help me read the core file??
i'm running HP-UX 11 64 bit. i'm using adb to read the core file, but am not too familiar with the syntax and having problems in reading it.
i will be attaching the core file and hope that somebody can help me with it.
thanks a lot.
my core file sits in /oracle/
can you help me in the proper syntax of the adb, or are there any freeware debugger there that i can use?
again thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2002 05:00 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2002 06:23 PM
03-11-2002 06:23 PM
Re: need to read core file
Hi,
You can refer the following discussions:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x00016d96588ad4118fef0090279cd0f9,00.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2002 11:32 PM
03-11-2002 11:32 PM
Re: need to read core file
Use file core
# file /*/core
/makepatchbundle/core: core file from 'e' - received SIGSEGV
/tmp/core: core file from 'pax' - received SIGSEGV
This is often a good guide to what is wrong.
adb can wait until this test has been done.
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2002 12:15 AM
03-12-2002 12:15 AM
Re: need to read core file
use file core >tmycore
so you can read it also you can use one of the optins with file command like
file -e core
the redirect sign is for the long file so you can read it propably.
thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2002 12:22 AM
03-12-2002 12:22 AM
Re: need to read core file
for finding out which process and signal was received
what core
for library information
wdb (hp wildebeest debugger)
for stack trace and debugging
(http://www.hp.com/go/developers)
Later,
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2002 12:29 AM
03-12-2002 12:29 AM
Re: need to read core file
If a system coredumps you'll find the files in /var/adm/crash usefull if you have q4 installed and have some experience with it. You can also get SOME info with adb.
Regards,
Trond
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2002 12:39 AM
03-12-2002 12:39 AM
Re: need to read core file
You certainly have enough choices now
what core
file core
file -c core
adb program core
$C
$Q
The $C will give a stack trace if it is there
and $Q exits.remeber adb has no prompt.
Please post the results if you need more
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2002 12:41 AM
03-12-2002 12:41 AM
Re: need to read core file
Ctrl D to exit!
(or search formus form "how to exit adb!!)
;)
Later,
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2002 12:48 AM
03-12-2002 12:48 AM
Re: need to read core file
I do not know how many "got" your last post.
;^))
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2002 02:54 AM
03-12-2002 02:54 AM
Re: need to read core file
As it was Oracle there should be a process trace file in the bdump or udump directory that corresponds to the core file. I suggest you gather up all this along with your alert log and take it to Oracle support.
Regards,
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2002 08:27 AM
03-12-2002 08:27 AM
Re: need to read core file
thanks for the response. i was able to figure the core file out, after pooling all the responses from my post.
that is why i love this forum.
what happened was, after patching oracle from 8.1.7 to 8.1.7.3.0.. there was another patch that needed to be applied to correct the errors that came with 8.1.7.3.0.
again, i do thank everybody for all your help.