GI的oifcfg命令

georgehmwang發表於2014-11-19

HAIP(highly available IP)Oracle GI叢集對私有網路冗餘的解決方案,自Oracle 11.2.0.2起可用。配置GI叢集時,最多可配置4個私有網路介面,這些網路介面必須使用IPv4IP地址。ASM例項使用這些介面的IP地址在所有節點之間進行通訊,實現高可用性、負載均衡。預設情況下,GI會使用所有的HAIP地址。如果其中的一個私有網路介面不能工作了,GI會把它相應的HAIP地址漂移到其它可用的私有網路介面上。

Oracle GIoifcfg命令用於管理GI的網路介面,介面型別有公用的public、私有的 cluster_interconnectASM例項的asm等,以下是對私有網路介面的配置例子。

oifcfggetif選項可以獲取當前節點的配置

# /u01/app/12.1.0/grid/bin/oifcfg getif

ipmp0 10.134.146.0 global public

net2 192.168.17.0 global cluster_interconnect,asm

net3 192.168.27.0 global cluster_interconnect,asm

net9 192.168.37.0 global cluster_interconnect,asm

net10 192.168.47.0 global cluster_interconnect,asm


oifcfgdelif選項可刪除網路介面

# /u01/app/12.1.0/grid/bin/oifcfg delif -global net9
# /u01/app/12.1.0/grid/bin/oifcfg delif -global net10

# /u01/app/12.1.0/grid/bin/oifcfg getif

ipmp0 10.134.146.0 global public

net2 192.168.17.0 global cluster_interconnect,asm

net3 192.168.27.0 global cluster_interconnect,asm


oifcfgsetif選項可新增網路介面

# /u01/app/12.1.0/grid/bin/oifcfg setif -global net9/192.168.37.0:cluster_interconnect,asm

# /u01/app/12.1.0/grid/bin/oifcfg setif -global net10/192.168.47.0:cluster_interconnect,asm

# /u01/app/12.1.0/grid/bin/oifcfg getif


ipmp0 10.134.146.0 global public

net2 192.168.17.0 global cluster_interconnect,asm

net3 192.168.27.0 global cluster_interconnect,asm

net9 192.168.37.0 global cluster_interconnect,asm

net10 192.168.47.0 global cluster_interconnect,asm


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

相關文章