程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle教程 >> 更換oracle集群網卡(ChangingaNetworkInterface)

更換oracle集群網卡(ChangingaNetworkInterface)

編輯:Oracle教程

更換oracle 集群網卡(Changing a Network Interface)

如果換網卡前後 網卡名,ip,網關,子網掩碼都不變的話,集群層面不許要做額外的操作!

一下操作為更換網卡後使用新的網卡名

1、確保所有集群節點都是active 的
olsnodes -s

[grid@vmrac1 ~]$ olsnodes -s
vmrac1 Active
vmrac2 Active

2、確保新的替換網卡已經配置在服務器上
$ /sbin/ifconfig..

3、將新網卡加到集群
oifcfg setif -global if_name/subnet:cluster_interconnect

oifcfg setif -global "eth*/192.168.0.0:cluster_interconnect

4、在完成新網卡添加後,移除以前的配置信息
oifcfg delif -global if_name/subnet
For example:
$ oifcfg delif -global eth1/10.10.0.0

5、驗證當前的配置信息:
oifcfg getif

For example:
$ oifcfg getif
eth2 10.220.52.0 global cluster_interconnect
eth0 10.220.16.0 global public

6、重啟集群
# crsctl stop crs

7、os 層面刪除網卡
$ ifconfig down

8、重啟集群
# crsctl start crs

如果使用 CLUSTER_INTERCONNECTS 這個參數注意要做出相應修改

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved