- copy the cd contents to the hard drive
- go to the directory /Linux/Disk1/InstData/VM or wherever the file LinuxInstaller.bin is located
- then do the following two commands
cp LinuxInstaller.bin LinuxInstaller.bin.bak
cat LinuxInstaller.bin.bak | sed "s/export LD_ASSUME_KERNEL/#xport LD_ASSUME_Kernel/" > LinuxInstaller.bin
- after that, run the installer as normal and it should work
http://www.cnblogs.com/bobyguo/articles/1493934.html--------------------------------------------------------------------------------------
srvctl错误libpthread.so.0
[oracle@orarac1 ~]$ srvctl status database -d orcl
/ora/app/oracle/product/10.2/db_1/jdk/jre/bin/java:
error while loading shared libraries: libpthread.so.0: cannot open
shared object file: No such file or directory
[oracle@orarac1 ~]$
看到这个错误,想起当初完10.2.0.1的时也发生过此错误。就是一时想不起当时怎么处理的。现在是升级到0.3的rac系统。
找出升级前的资料,用备份资料中的srvctl脚本执行
/bak/oracle/app/crs/bin/srvctl status database -d orcl
呵呵,没有报错。检查了了n久的脚本,才找出不同来(呵呵,不够细心)
#Remove this workaround when the bug 3937317 is fixed
LD_ASSUME_KERNEL=2.4.19
export LD_ASSUME_KERNEL
只要注释掉这两行就ok了
另外在安装rac时vipca脚本也是类似错误
/app/oracle/product/10.2.0/crs/bin/crsctl.bin:
error while loading shared libraries: libpthread.so.0: cannot open
shared object file: No such file or directory
这个问题是新版的glibc和的有不兼容的地方。按照官方文档要在运行root.sh之前修改vipca脚本。这样就可以安装了。即将该脚本中arch=‘’uname -m‘以下4行注释掉
arch=`uname -m`
#if [ "$arch" = "i686" -o "$arch" = "ia64" -o "$arch" = "x86_64" ]
#then
# LD_ASSUME_KERNEL=2.4.19
# export LD_ASSUME_KERNEL
#fi
#End workaround
这样就不会出现错误了。
的bug还真是一堆一堆的
http://space.itpub.net/32939/viewspace-563317
阅读(755) | 评论(0) | 转发(0) |