Removed unused HAIP route: 169.254.95.0 / 255.255.255.0 / 0.0.0.0 / usb0

huzhichengforce發表於2016-01-14

錯誤:
[/u01/app/11.2.0/grid/bin/orarootagent.bin(3476)]CRS-5018:(:CLSN00037:) Removed unused HAIP route:  169.254.95.0 / 255.255.255.0 / 0.0.0.0 / usb0

參考:
CRS-5018:(:CLSN00037:) Removed unused HAIP route:

Cause: Typically, this error indicates that something (usually Zero Configuration Networking, zeroconf) has created the indicated route that is conflicting with the HAIP code. The error indicates that the Oracle software has removed the route to ensure appropriate stack functioning.
Action: The Zero Configuration Networking feature should be disabled when using Oracle Clusterware, as this feature may cause communication issues between cluster member nodes.

To disable Zero Configuration Networking:

  1. Log in as root.

  2. Change directory to /etc/sysconfig

  3. Create a copy of /etc/sysconfig/network. For example:

    # cp network network_old
    
  4. Use a text editor to open the file /etc/sysconfig/network.

  5. Check the file for the value for NOZERCONF to confirm that it is set to yes. If you do not find this parameter in the file, then append the following entry to the file:

    NOZERCONF=yes
    

    Save the file after you update this setting.

  6. Restart the network services. For example:

    # service network restart
    
  7. Repeat this process on each cluster member node.

參考:
注:在ora.cluster_interconnect.haip資源啟動之前,cssd程式會檢查私有網路來判定是否啟動cssd程式,當ora.cluster_interconnect.haip資源啟動之後,ora.asm的LMON程式會檢查私有網路的通訊狀況,來判斷是否啟動叢集ora.asm, 這時interconnect_IP地址是169.254網段的地址,如果節點間的169.254網段的地址不通,asm例項必定只能在部分節點執行,asm例項不能啟動,Clusterware和資料庫例項都無法啟動,  本次故障的原因就是USB0的網路卡佔用的169.254網段IP導致,私有網路的HAIP無法正常繫結通訊,叢集驅逐了節點2,  
 在使用ibm X系列伺服器時候,要將無用的USB0網路卡禁掉,保證HAIP除了私有網路卡不被其他裝置使用  
IBM的PC伺服器有個使用USB做為管理網路的特性(IBM獨有,別的品牌伺服器中沒有發現)。在你沒有連線USB網路卡的時候會不停向DHCP申請IP,如果沒有發現DHCP時就會預設分配一個169.254.xx.xx的IP地址,這個時候就會和ORACLE的虛擬IP產生衝突。造成路由資訊丟失。從網上看這個USB0的問題還會引起LINUX HA異常。
解決方法:
#ifdown usb0
vi /etc/sysconfig/network-scripts/ifcfg-usb0
onboot=no
關閉usb0網路卡功能(現在還沒聽說過有人用過這個功能的。如果用的話只有IP地址不是169.254.xx.xx也一樣不會出現這個問題)。
關閉後重啟停止的crs後問題解決。--------------如果你的叢集沒出問題,只是告警。不需要重啟CRS 
本次處理:
#ifdown usb0


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26764973/viewspace-1976444/,如需轉載,請註明出處,否則將追究法律責任。

相關文章