最近在安装Oracle 11.2.0.2.0 for RedHat5.4_32bit,出现了一些问题,总结如下。
一、数据库软件安装好后,用dbca命令建库。
1、报错如下:
[oracle@mydb]$dbca
Oracle Net Services Configuration:
#
# An unexpected error has been detected by HotSpot Virtual Machine:
#
# SIGSEGV (0xb) at pc=0xa78b13a8, pid=5118, tid=3086896789
#
# Java VM: Java HotSpot(TM) Client VM (1.5.0_17-b02 mixed mode)
# Problematic frame:
# C [libnnz11.so+0x3c3a8]
#
# An error report file with more information is saved as hs_err_pid5118.log
#
# If you would like to submit a bug report, please visit:
# http://java.sun.com/webapps/bugreport/crash.jsp
5、关闭SElinux,修改Selinux的配置文件
[root@mydb bin]# vi /etc/sysconfig/selinux
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - SELinux is fully disabled.
SELINUX=disabled
# SELINUXTYPE= type of policy in use. Possible values are:
# targeted - Only targeted network daemons are protected.
# strict - Full SELinux protection.
SELINUXTYPE=targeted
三、oracle11Gr2在RHEL6 X64上执行gui安装报错
转载 http://blog.sina.com.cn/s/blog_70dd7d530101d3q6.html
前些天某学生在安装oracle时碰到一个问题,报错信息如下
# An unexpected error has been detected by HotSpot Virtual Machine:
#
# SIGSEGV (0xb) at pc=0x00007f5bb0bced70, pid=2732, tid=140031049791248
#
# Java VM: Java HotSpot(TM) 64-Bit Server VM (1.5.0_17-b03 mixed mode)
# Problematic frame:
# C [ld-linux-x86-64.so.2+0x14d70]
#
# An error report file with more information is saved as hs_err_pid2732.log
#
# If you would like to submit a bug report, please visit:
看报错信息 很古怪
检查报错的动态库文件ld-linux-x86-64.so.2 属于glibc 应该不会是这个动态库文件出问题。
所以怀疑是执行文件没有找到要执行的函数。网上也搜索到了类似的问题
在这个博客当中一个叫做 keyi2323 的热心网友回复找到了答案
http://blog.csdn.net/lsj19830812/article/details/7784611