RedHat6 如何弹出安装界面

在RedHat6 上面,安装Oracle 11g R2时,运行runInstaller后,立即跳出如下错误内容。

# An unexpected error has been detected by HotSpot Virtual Machine:

#

# SIGSEGV (0xb) at pc=0x00007fd0b80d0d70, pid=2951, tid=140533187077904

#

# Java VM: Java HotSpot(TM) 64-Bit Server VM (1.5.0_30-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_pid2951.log

#

# If you would like to submit a bug report, please visit:

# http://java.sun.com/webapps/bugreport/crash.jsp

#

解决方法如下:在运行runInstaller之前,先设定如下的环境变量。

[plain]

$ export LD_BIND_NOW=1

这个环境变量的作用是,让连接器在程序执行前把所有的函数地址都连接好。

这个原因看起来好像和安装Oracle没什么关系,但是,确实能解决问题。

 

 

 

 

 

 

 

 

 

安装oracle 11.2.0.3时发现,ORA-27102: out of memory

最终通过调整kernel.shmall解决。

shmall表示系统一次可以使用的共享内存大小,以页为单位。

shmall=SGA/PAGE_SIZE

查看页大小:
$ getconf PAGE_SIZE
4096

例如SGA为16G,
shmall=16*1024*1024*1024/4096=4194304

 

你可能感兴趣的:(RedHat6 如何弹出安装界面)