- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- SIGNAL11 issue
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
Discussions
Discussions
Discussions
Forums
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
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-23-2007 06:25 AM
тАО11-23-2007 06:25 AM
Can anybody expalian what is and what it means a signal 11?
Some process in a HP-UX 11.23, Oracle9i and SAP NW 6 has been 'killed' with this status.
Apreciate your help
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-23-2007 07:42 AM
тАО11-23-2007 07:42 AM
SolutionThere is also an non-zero probability that the signal came from an outside process (ie kill -11 PID) but that is very unlikely. Almost certainly this is a coding error. The way to analyze this problem is via a debugger to examine the stack trace but unless you have the source code, you won't be able to fix anything.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-23-2007 04:56 PM
тАО11-23-2007 04:56 PM
Re: SIGNAL11 issue
Actually both signal 10 and 11 can be caused by this. Actually the difference between the two is blurred but both are caused by bad addresses for the instruction in question.
Other causes of the two:
stack or thread stack overflow
Alignment traps
Null pointer dereferences
An address that isn't mapped
An address in another process (access rights)
>signal came from an outside process (ie kill -11 PID) but that is very unlikely.
Right, these are hard to trace down because the instruction and registers can't fail.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-23-2007 05:03 PM
тАО11-23-2007 05:03 PM
Re: SIGNAL11 issue
One use of just a stack trace is to compare against other instances to check whether it is a duplicate and find a workaround or fix.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-24-2007 03:43 AM
тАО11-24-2007 03:43 AM
Re: SIGNAL11 issue
One way to quickly see the mapping between a signal number and its name is to do:
# kill -l
From that you would see that 11 = SEGV. The prefix "SIG" is inferred.
You can also examine '/usr/include/sys/signal.h' to see the number to name mapping.
The manpages for 'signal(5)' then offer insight into the *reason* for the signal. In the case of interest, a signal-11 (SIGSEGV) would be either an address not mapped to object or invalid permissions for a mapped object.
http://www.docs.hp.com/en/B2355-60105/signal.5.html
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-03-2008 05:26 PM
тАО04-03-2008 05:26 PM