oracle 10g rac for linux redhat 5.3 安裝常見問題

paulyibinyi發表於2010-07-18

   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:
/bin/vipca
/bin/srvctl
/bin/srvctl
/bin/srvctl

3.執行vipca指令碼時報以下錯誤

# vipca
Error 0(Native: listNetInterfaces:[3]) 
[Error 0(Native: listNetInterfaces:[3])]

解決方法:

/bin # ./oifcfg setif -global eth0/192.168.1.0:public 
/bin # ./oifcfg setif -global eth1/10.10.10.0:cluster_interconnect 
/bin # ./oifcfg getif 
 eth0 192.168.1.0 global public 
 eth1 10.10.10.0 global cluster_interconnect

確認修改是否成功

/bin # ./oifcfg iflist
eth0 192.168.1.0
eth1 10.10.10.0 

 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7199859/viewspace-668346/,如需轉載,請註明出處,否則將追究法律責任。

相關文章