Java运行时环境检测到致命错误:SIGSEGV(0xb) [英] A fatal error has been detected by the Java Runtime Environment: SIGSEGV (0xb)

查看:1917
本文介绍了Java运行时环境检测到致命错误:SIGSEGV(0xb)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用的是64位操作系统的RHEL 6。对于我的一个应用程序,我安装了jre-6u23-linux-x64.bin。当我执行我的应用程序时,我得到以下错误:

I am using RHEL 6 with 64 bit OS. For one of my application I had installed "jre-6u23-linux-x64.bin". When I execute my application I am getting the below ERROR:

 # A fatal error has been detected by the Java Runtime Environment:
 #  SIGSEGV (0xb) at pc=0x0000003222414d70, pid=4977, tid=140076581496592
 # JRE version: 6.0_23-b05
 # Java VM: Java HotSpot(TM) 64-Bit Server VM (19.0-b09 mixed mode linux-amd64 compressed oops)
 # Problematic frame:**
 # C  [ld-linux-x86-64.so.2+0x14d70]
 # An error report file with more information is saved as
 # /root/Desktop/Madhu/SELVIEW10.0-B4/Linux/hs_err_pid4977.log
 # If you would like to submit a bug report, please visit:
 #   http://java.sun.com/webapps/bugreport/crash.jsp
 # The crash happened outside the Java Virtual Machine in native code.
 # See problematic frame for where to report the bug.

任何人都有解决方案吗?

Can anyone have solution for this?

推荐答案


崩溃发生在本机代码中的Java虚拟机之外。

The crash happened outside the Java Virtual Machine in native code.


包含更多信息的错误报告文件是保存为
/root/Desktop/Madhu/SELVIEW10.0-B4/Linux/hs_err_pid4977.log

An error report file with more information is saved as /root/Desktop/Madhu/SELVIEW10.0-B4/Linux/hs_err_pid4977.log

它看起来像你正在处理有缺陷的本地图书馆。看看那个hs_err转储(它是纯文本),它应该指出问题。

it looks like you're dealing with a defective native library. Have a look at that hs_err dump (it's plain text), it should point to the problem.

另一件事:压缩的OOPS优化被公平地添加到JVM中最近,尝试禁用它(在命令行上传递 -XX:-UseCompressedOops )并查看问题是否仍然存在。

Another thing to try: the Compressed OOPS optimization was added to the JVM fairly recently, try disabling that (pass -XX:-UseCompressedOops on the command line) and see if the problem persists.

这篇关于Java运行时环境检测到致命错误:SIGSEGV(0xb)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆