- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Core Dump - 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
11-07-2006 08:10 AM
11-07-2006 08:10 AM
Core Dump - Received SIGSEGV
sh: 16738 Memory fault(coredump)
core: core file from 'CU1C2020.e' - received SIGSEGV
This just started, and I am thinking it may be a kernel parameter. Does anyone have an idea? The search function on this sight is not working????
Thanks,
...jcd..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2006 08:21 AM
11-07-2006 08:21 AM
Re: Core Dump - Received SIGSEGV
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2006 08:32 AM
11-07-2006 08:32 AM
Re: Core Dump - Received SIGSEGV
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2006 08:41 AM
11-07-2006 08:41 AM
Re: Core Dump - Received SIGSEGV
Looking at the core file did not reveal any issue????
...jcd...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2006 09:25 AM
11-07-2006 09:25 AM
Re: Core Dump - Received SIGSEGV
I think the only time I've seen frequent segfaults that weren't caused by a programming error was when I had an incompatible version of a shared library. That can happen with an update, or a bad SHLIB_PATH/LD_LIBRARY_PATH setting. In either case, you should know if you did it recently.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2006 02:19 PM
11-07-2006 02:19 PM
Re: Core Dump - Received SIGSEGV
A far better approach is to use a debugger such a gdb on the core file to get a stack trace --- but even here without the source code, the stack trace will be of limited value.
It is possible that because of more activity or larger data volumes you are hitting kernel limits (most likely maxdsiz or possibly maxssiz. Don't get carried away and expand maxssiz by huge margins (32MiB is normally more than sufficient) and if this is 32-bit code, increasing maxssiz can literally be robbing Peter (data segment limited by maxdsiz) to pay Paul (the stack) because both are allocated from the same quadrant.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2006 07:26 PM
11-07-2006 07:26 PM
Re: Core Dump - Received SIGSEGV
You can download gdb from:
http://www.hp.com/go/wdb
In general, you invoke it by:
gdb executable corefile-name
About the only case it can be a kernel parm is a stack overflow, which has a different message. A thread stack overflow. Or running out of heap space and not having error checks when malloc returns an error.