rac只能重启一个节点案例总结

1、linux 系统放火墙或者sellinux 没关,导致另一个节点不能启动

查看防火墙状态
systemctl status firewalld

查看SELinux状态
getenforce

2、网卡mtu问题

2.1 2节点网卡mtu设置一致,网卡mtu和交换机mtu设置不一致,这种问题的判断方法 从一个节点往另一个节点copy一个大文件,看是否能拷贝过去 或者 ping 大包

      指定次数为4次,数据包大小为32767Byte:ping -c 4 -s 32767 ip

2.13 2节点的网卡myu不一致

MTU检查

ifconfig -a

aix 修改mtu

--需要重启
chdev -Pl ent1 -a jumbo_frames=yes
chdev -Pl en1 -a mtu=9000
--临时生效
chdev -P -l ent1 -a media_speed=Auto_Negotiation
ifconfig en1 down detach
chdev -l ent1 -a jumbo_frames=yes
chdev -l en1 -a mtu=9000
chdev -l en1 -a state=up

linux 修改mtu

--需要重启网卡
grep MTU /etc/sysconfig/network-scripts/ifcfg-eth0
9000
service network restart
--临时生效
ifconfig eth0 mtu 9000

3、asm密码文件问题

 参考mos 12c GI: resource ora.storage can't started due to wrong ASM password location information (Doc ID 2264675.1)

        How to recreate shared ASM password file in 12c GI cluster (文档 ID 1929673.1)

4、混合asm问题,修改sqlnet.ora,添加私有网卡 

FLEXASM: Unable to Start CRS After Reboot ORA-12537 ora.storage ORA-12547 (Doc ID2294385.1)

原文地址:https://www.cnblogs.com/omsql/p/14760925.html