今天在做RAC + data Guard 的实验。 用了之前做RAC 添加节点的虚拟机。 即以前的rac3节点。 这个节点之前已经卸载过了。 卸载方法参考:
RAC 卸载 说明
http://blog.csdn.net/xujinyang/article/details/6837237
但是在安装Oracle 软件的时候,界面提示有问题。 截图如下:
在这里多了一个OraCrs10g_home 的目录,里面还有以前的节点rac3. 单节选中之后是,remove 按钮是灰色的,就是无法进行删除。
检查了Oracle 的相关目录没有问题。 最后发现 /u01/app/oracle/oraInventory 没有清空。 Oracle 在安装的时候,会往这个目录copy 文件。 尝试把这个目录清空之后,再次安装,正常了。
[root@rac3 oracle]# cd oraInventory/
[root@rac3 oraInventory]# pwd
/u01/app/oracle/oraInventory
[root@rac3 oraInventory]# ls
Contents install.platform oraInstaller.properties orainstRoot.sh
ContentsXML logs oraInst.loc oui
[root@rac3 oraInventory]# rm -rf *
一句话总结: DBA,细节决定成败。
------------------------------------------------------------------------------