1.使用root用户执行取消依赖
$GRID_HOME/bin/crsctl modify res ora.cluster_interconnect.haip -attr "ENABLED=0" -init -f
$GRID_HOME/bin/crsctl modify res ora.asm -attr "START_DEPENDENCIES='hard(ora.cssd,ora.ctssd)pullup(ora.cssd,ora.ctssd)weak(ora.drivers.acfs)', STOP_DEPENDENCIES='hard(intermediate:ora.cssd)' " -init -f
2.设置参数
使用grid用户修改ASM实例的cluster_interconnects参数修改为具体的私网地址,示例如下:
SQL> alter system set cluster_interconnects='10.0.0.1' scope=spfile sid='+ASM1';
SQL> alter system set cluster_interconnects='10.0.0.2' scope=spfile sid='+ASM2';
使用oracle用户修改DB实例的cluster_interconnects参数修改为具体的私网地址,示例如下:
SQL> alter system set cluster_interconnects='10.0.0.1' scope=spfile sid=orcl1';
SQL> alter system set cluster_interconnects='10.0.0.2' scope=spfile sid=orcl2';