oracle 11g 搭建RAC遇到的诸多问题(2)

1、[INS-08106]
[php]  view plaincopy
SEVERE: [FATAL] [INS-08106] Unexpected error occurred while loading the view 'GridPlugPlayInfoUI' associated to state 'GridPlugPlayInfoUI'.  

这步设置 GridPlugPlay 信息时,需读取 /etc/hosts 文件内定义的网络接口信息。
仔细查看hosts文件内容,发现自己把 ip 地址写错了,随后两个节点都更正再次运行正常了。
另外hosts文件内有无效字符也会出现这个问题。
2、 Package "cvuqdisk-1.0.9-


oracle 11g 搭建RAC遇到的诸多问题(2)_第1张图片
>rpm -ivh cvuqdisk-1.0.9-1.rpm。
3、rac2节点运行root.sh报错:
oracle 11g 搭建RAC遇到的诸多问题(2)_第2张图片
发现没有asm-disk文件夹!!!靠!猪脑子啊!
创建完软连接以后:
oracle 11g 搭建RAC遇到的诸多问题(2)_第3张图片
一直在闪
说明的问题:没有这些盘!
没有添加盘!
vi /etc/udev/rules.d/99-asm-highgo.rules
重启udev 守护进程
start_udev
检查是否生成ls -l /dev/raw/raw* 磁盘, 以及磁盘权限是否是grid:asmadmin!!!
oracle 11g 搭建RAC遇到的诸多问题(2)_第4张图片
4、linux解决xhost: unable to open display ""
实用技巧:在Linux下设置xhost方法步骤
第一步:用root登陆linux,启动vnc服务;
第二步:根据vnc起来的端口,设置export DISPLAY=localhost:1(1表示vnc在第一个tty上启动的),vnc的启动信息见附件1;
第三步:执行xhost +,并且提示“access control disabled, clients can connect from any host”才正确。
linux下的操作日志如下:
[root@localhost ~]# vncserver
New 'localhost:1 (root)' desktop is localhost:1
Starting applications specified in /root/.vnc/xstartupLog file is /root/.vnc/localhost:1.log
[root@localhost ~]# export DISPLAY=localhost:1
[root@localhost ~]# xhost +
access control disabled, clients can connect from any host 
在设置xhost时,出现了unable的问题。使用上诉方法就可以搞定。
下面方法也可以:
Steps to resolve this issue:
1) login into root user( su -l root)
2) execute this command :  xhost +SI:localuser:oracle
3) login to the oracle user
4) execute ./runInstaller

你可能感兴趣的:(rac,oracle,11g,RHEL6.5)