- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- core dump reading
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
10-15-2006 11:49 PM
10-15-2006 11:49 PM
Please help me to "read" core-dump file in order to find out the problem. I know that I could use "adb", but how? My system is PA-RISK 11.11.
Core dump is:"/root/core" from 15/10/2006.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2006 11:56 PM
10-15-2006 11:56 PM
Re: core dump reading
You might want to try with:
strings core | grep -i fatal
Regards,
Jaime.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2006 12:02 AM
10-16-2006 12:02 AM
Re: core dump reading
to identify the program that created the core file, run the command
file /path/to/core
If the program name is one of your self developped ones, load program and core in the debugger.
mfG Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2006 12:21 AM
10-16-2006 12:21 AM
SolutionSampel "gdb"
# file /oracle/oraclesid/scripts/core
ELF-64 core file - PA-RISC 2.0 from 'sqlplus' - received SIGQUIT
# gdb /opt/oracle92/bin/sqlplus /home/oracle/oraclesid/scripts/core
...
(gdb) bt
#0 0xc0000000002fc3ec in adjtime+0x44 () from /usr/lib/pa20_64/libc.2
#1 0xc000000000307124 in wait3+0x94 () from /usr/lib/pa20_64/libc.2
Error accessing memory address 0x0: Invalid argument.
(gdb) quit
rgs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2006 12:30 AM
10-16-2006 12:30 AM
Re: core dump reading
GDB is a useful tool for debugging core files generated by processes.
To find out more information regarding GDB visit;
http://www.gnu.org/software/gdb/documentation/
Running GDB
[a]. Determine the location of GDB, whereis gdb
[b]. Execute gdb from the directory returned by the whereis command. Note the arguments to gdb are
Process
Core file location
[c]. Example, to analysis the core file core.225 located in the /home/mcadmin/CORE-FILES/applications directory which was generated by the mobi process run gdb as follows
gdb /apps/picasso/bin/mobi /home/mcadmin/CORE-FILES/applications/core.225
[a]. To gather backtrace useful to analysis the problem type bt
[b]. Save this backtrace to a file
[c]. To quit gdb, type quit