RAC新增私有網絡卡

2021-10-17 14:10:37 字數 1834 閱讀 5276

當前環境:

rac環境已存在,原環境每個節點兩張網絡卡,現在每個節點各新增一張網絡卡作為私網網絡卡加入rac集群環境

檢視當前集群網絡卡情況:

[grid@orcl2 ~]$  oifcfg getif

eth0 172.16.104.0 global public

eth1 172.16.108.0 global cluster_interconnect,asm

[grid@orcl1 ~]$ oifcfg getif

eth0 172.16.104.0 global public

eth1 172.16.108.0 global cluster_interconnect,asm

新增新網絡卡:

[grid@orcl1 ~]$ oifcfg setif -global eth2/172.16.109.0:cluster_interconnect,asm

[grid@orcl2 ~]$ oifcfg setif -global eth2/172.16.109.0:cluster_interconnect,asm

刪除網絡卡:

[grid@orcl1 ~]$ oifcfg delif -global eth2/172.16.109.0

[grid@orcl2 ~]$ oifcfg delif -global eth2/172.16.109.0

重新檢視:

[grid@orcl1 ~]$  oifcfg getif

eth0 172.16.104.0 global public

eth1 172.16.108.0 global cluster_interconnect,asm

eth2 172.16.109.0 global cluster_interconnect

[grid@orcl2 ~]$ oifcfg getif

eth0 172.16.104.0 global public

eth1 172.16.108.0 global cluster_interconnect,asm

eth2 172.16.109.0 global cluster_interconnect

重啟集群:

....

檢視系統網絡卡情況:

網絡卡eth2已經成功繫結haip

私網的高可用

測試私網的高可用,手動關閉節點1的eth2後再次檢視系統網絡卡情況

發現haip自動漂移到eth1,節點2雖然網絡卡沒有down但是haip也會發生自動漂移

將網絡卡重新啟動,再次檢視,haip自動恢復,說明集群管理軟體在私網網絡卡出現問題的時候還是會繼續監控這塊網絡卡,以便在網絡卡恢復正常的時候能夠將haip重新恢復到原有的網絡卡上,從而保證haip能恢復負載均衡。

[root@orcl1 ~]# ifconfig eth2 up

RAC新增刪除磁碟

一 環境 oracle 11gr2 rac 二 實施 備註 安全起見,操作之前停資料庫例項 asm例項 1 節點1 2磁碟資訊 共享磁碟資訊 root 11grac1 ls l dev asm 格式 dev asm diskc 需新加磁碟 root 11grac1 ls l dev sd dev s...

Linux下11 2 0 4 RAC新增節點

1.配置基礎環境 基礎環境配置完之後用 cluvfy stage pre nodeadd n vip fixup fixupdir verbose 檢查環境是否ok 如果dns沒有配置就設定環境變數 表示不檢查預安裝環境 export ignore preaddnode checks y 2.新增g...

docker新增多網絡卡

1.清除物理網絡卡ip位址 192.168.1.22 使其工作在鏈路層接收所有資料報 ip addr del 192.168.1.22 24 dev eth0 ip addr add 0.0.0.0 dev eth0 2.建立網橋br0並把介面eth0加入br0 ip link add br0 ty...