oracle 10g rac for linux RHEL5 下的安装主要有以下三个问题
1.操作系统版本不支持
解决方法:
$ runInstaller -ignoreSysPrereqs // This will bypass the OS check //
2.在最后一个节点运行root.sh报以下错误
Oracle CRS stack installed and running under init(1M)
Running vipca(silent) for configuring nodeapps
/home/oracle/crs/oracle/product/10/crs/jdk/jre//bin/java: error while loading
shared libraries: libpthread.so.0: cannot open shared object file:
No such file or directory
解决方法:
编辑vipca脚本(所有节点)
if [ "$arch" = "i686" -o "$arch" = "ia64" -o "$arch" = "x86_64" ]
then
LD_ASSUME_KERNEL=2.4.19
export LD_ASSUME_KERNEL
fi
unset LD_ASSUME_KERNEL <<<== Line to be added
编辑srvctl脚本(所有节点)
LD_ASSUME_KERNEL=2.4.19
export LD_ASSUME_KERNEL
unset LD_ASSUME_KERNEL <<<== Line to be added
Remember to re-edit these files on all nodes:
3.运行vipca脚本时报以下错误
# vipca
Error 0(Native: listNetInterfaces:[3])
[Error 0(Native: listNetInterfaces:[3])]
解决方法:
eth0 192.168.1.0 global public
eth1 10.10.10.0 global cluster_interconnect
确认修改是否成功
eth0 192.168.1.0
eth1 10.10.10.0