- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- core file from 'cp' - received SIGSEGV
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
04-29-2008 10:24 PM
04-29-2008 10:24 PM
Can someone help to shred light about this core file generated if this is a serious problem. Here's the output from the debugger tool that I got from this core file.
HP gdb 3.3 for PA-RISC 1.1 or 2.0 (narrow), HP-UX 11.00.
Copyright 1986 - 2001 Free Software Foundation, Inc.
Hewlett-Packard Wildebeest 3.3 (based on GDB) is covered by the
GNU General Public License. Type "show copying" to see the conditions to
change it and/or distribute copies. Type "show warranty" for warranty/support.
..(no debugging symbols found)...
Core was generated by `cp'.
Program terminated with signal 11, Segmentation fault.
(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...
(no debugging symbols found)...(no debugging symbols found)...#0 0x692f6268 in ?? ()
(gdb) bt
#0 0x692f6268 in ?? ()
warning: Attempting to unwind past bad PC 0x692f6268
#1 0x692f6268 in ?? ()
#2 0x692f6268 in ?? ()
#3 0x692f6268 in ?? ()
Cannot access memory at address 0x2f70726f
What was the caused behind this core file generated after initially cp command initiated but second time works fine.
Thanks in advance.
Alfred
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2008 10:26 PM
04-29-2008 10:26 PM
Re: core file from 'cp' - received SIGSEGV
# file core
core: core file from 'cp' - received SIGSEGV
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2008 11:08 PM
04-29-2008 11:08 PM
SolutionUse "what /usr/bin/cp" to identify the patch level of the cp command: this might offer some clues.
If you invoked that "cp" command with exact same parameters and the first try failed but the second one succeeded, I would suspect data corruption in memory or in the CPU. Does this machine have any other strange intermittent problems?
What's the hardware model? (i.e. what does the "model" command report?)
Use the STM diagnostics (stm/mstm/xstm according to your UI preference) to check memory and CPU error counts. If this machine has a GSP, check its log for applicable error messages. These might allow you to identify the failing memory module or CPU.
MK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2008 12:23 AM
04-30-2008 12:23 AM
Re: core file from 'cp' - received SIGSEGV
The version of gdb that you have is obsolete. It may be responsible for the bogus stack trace.
Also 0x692f6268 could indicate stack corruption since that is the string "i/bh"
$1 = 105 'i'
(gdb) p /c 0x2f
$2 = 47 '/'
(gdb) p /c 0x62
$3 = 98 'b'
(gdb) p /c 0x68
$4 = 104 'h'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2008 02:05 AM
04-30-2008 02:05 AM
Re: core file from 'cp' - received SIGSEGV
1st check dmesg
2nd contact hp hardware support to check hardware logs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2008 02:13 AM
04-30-2008 02:13 AM
Re: core file from 'cp' - received SIGSEGV
Thanks for your reply. currently my gdb version Im using is HP gdb 5.7 for PA-RISC 1.1 or 2.0 (narrow), HP-UX 11.00, the one on the above I used from test server and core dump file w/c i just uploaded. If 11.00 is already out of support from HP, is it possible we can upgrade this WDB tool to the latest one?
Im also thinking it might be from the patch level of the cmd and currently it using PHCO_34832.
So far I do not encounter any issues from the system yet and even before. And I did check the memory and cpu from stm but they wre seems running fine with no error logs found. Anyway fyi, the model of the server is rp8420.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2008 02:18 AM
04-30-2008 02:18 AM
Re: core file from 'cp' - received SIGSEGV
no even erros gave me from dmesg and syslog. I would normally only raise a hardware call if there's really a hardware problem from the system.
Thanks for your share...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2008 02:18 AM
05-01-2008 02:18 AM
Re: core file from 'cp' - received SIGSEGV
You can't debug core files on a different system than the one that created it.
(You can use packcore & unpack core. Or you must copy the core, the executable and every shlib that is used. Then use GDB_SHLIB_PATH to point to the directory where you copied the files.)
>If 11.00 is already out of support from HP, is it possible we can upgrade this WDB tool to the latest one?
You could try, at least newer than 3.3.
>So far I do not encounter any issues from the system yet
Then I wouldn't worry unless it repeats.