- 最后登录
- 2015-4-12
- 在线时间
- 53 小时
- 威望
- 39
- 金钱
- 411
- 注册时间
- 2011-10-13
- 阅读权限
- 10
- 帖子
- 27
- 精华
- 0
- 积分
- 39
- UID
- 27
|
2#
发表于 2012-12-19 17:47:53
问题解决了,谢谢2群的小江帮忙。
参考VIP does not Failover or Network Resource Stays Online after Disconnected Cables for Bond Public Network [ID 1276737.1]文档。通过mii-tool检查正常,参考文档解决 bug 10020138的步骤修改racgvip文件后vip能够正常漂移了。- Another potential solution is fix for bug 10020138 (fixed 11.2.0.3, 12.1). Due to this bug, interface check may not use mii-tool as _LINK_STAT was not reset. The workaround is to locate the following in $ORA_CRS_HOME/bin/racgvip:
- else
- logx "checkIf: ethtool checked if=$_IF failed"
- fi
- And change it to:
- else
- logx "checkIf: ethtool checked if=$_IF failed"
- _LINK_STAT=
- fi
复制代码 |
|