I want to know what ORA-24550: signal received: [si_signo=6] means?
I know this is an oracle error and may an oracle latest patch can solve the issue.
When this error is triggered, like the scenario where this signal has to be handled or whether this error occur when my application has to handle something related to oracle and the application failed to do that.
Oracle sets its own signal handlers, so this error may be due to unhandled sigabort signal. You can disable oracle signal handling to find out if this error is provided by oracle, or there is completely another reason. To disable you set DIAG_SIGHANDLER_ENABLED=FALSE in sqlnet.ora file. I don't think that the reason is oracle itself.
I had a similar error, but I obtained the si_signo=11 (Invalid memory reference according to previous comment), in my case I was working on Red Hat 6.5 and my Oracle DB was in a different server, the problem was local to my Red Hat server, here the error:
In my case the fix was very simple, I had a stack size limited amount, temporary solution was to change it to unlimited
Then I retried to launch my application, the problem was gone. This solution, indeed, made me understand I had to set a higher value for the stack size index, please consider increasing the value but not using unlimited because it's not a good practice, it might take down the server or create performance issues.
This is a sign that your Oracle client has received a signal it wasn't expecting. The Oracle docs say:
By default, Oracle registers its own signal handlers, but you can configure it to let signals propagate instead.
You will generally see a log line like this:
and you may see a traceback too.
To debug, you need to find out what is producing this signal.
si_signo=6
means that you're getting signal 6. We can find out which signal this is with$ man 7 signal
:We can see you're getting
SIGABRT
. This usually means something is callingabort()
.