今天是2014-03-17,目前學習進度也正在緊鑼密鼓的進行著,今天把一小部分實驗在做一下記錄一下筆記。
我們知道RAC網路有私人網路和公用網路,公用網路提供客戶訪問請求,私用網路提供Oracle 的cache fusion和節點心跳等作用,因為在11G R2可以執行4個private network 進行cache fusion。
但在剛剛開始安裝的時候進行了忽略,那麼安裝之後如何修改呢?且該環節可以類比oracle RAC怎麼添加私用網卡,如果替換損壞網卡等真實環節。
另外對於網路調整無非有、更改私用主機名稱啊、不改變網段和掩碼改變私用地址啊、改變私人網路的mtu啊、改變私人網卡子網或是掩碼,這麼幾種情況。
今天就談如何改變私網網卡。那麼這時候需要使用一個工具叫oracle interface configuration assistant(oifcfg).
在11G r2之前,oracle在ocr中儲存網路介面名稱和子網資訊,那麼使用oifcfg即可完成修改:
1、增加和刪除私網介面
增加一個私網介面
$ORA_CRS_HOME/bin/oifcfg setif -global <if_name>/<subnet>:cluster_interconnect
刪除一個私網介面
$ORA_CRS_HOME/bin/oifcfg delif -global <if_name>/<subnet>
2、查看網卡改變情況
$ORA_CRS_HOME/bin/oifcfg getif
3、重啟叢集
crsctl stop crs
crsctl start crs
那麼對於oracle 11G R2或是更高版本,如何修改私網呢?
在11.2gi中,私人網路設定不在儲存在ocr中,而是儲存在gpnp profile檔案中,該檔案是一個xml檔案,不推薦使用手動編輯,在進行配置私網之前
首先需要備份該檔案,進而進行後續操作。由於我的實驗環境正好是11.2.0.4,因此隨即記錄真實修改過程。
1、備份gpnp profile 檔案(每個節點都要備份)。
節點一:
[root@rac-one cdgi]# su - grid
[grid@rac-one ~]$ cd /u01/app/11.2.0/grid/gpnp/rac-one/profiles/peer/
[grid@rac-one peer]$ ls -l
total 12
-rw-r--r-- 1 grid oinstall 1857 Feb 25 21:54 profile.old
-rw-r--r-- 1 grid oinstall 1830 Feb 13 02:51 profile_orig.xml
-rw-r--r-- 1 grid oinstall 1896 Feb 25 21:58 profile.xml
[grid@rac-one peer]$ cp profile.xml profile.xml_bak
[grid@rac-one peer]$ ls -ltr
total 16
-rw-r--r-- 1 grid oinstall 1830 Feb 13 02:51 profile_orig.xml
-rw-r--r-- 1 grid oinstall 1857 Feb 25 21:54 profile.old
-rw-r--r-- 1 grid oinstall 1896 Feb 25 21:58 profile.xml
-rw-r--r-- 1 grid oinstall 1896 Mar 17 17:47 profile.xml_bak
[grid@rac-one peer]$
節點二:
[root@rac-two ~]# su - grid
[grid@rac-two ~]$ cd /u01/app/11.2.0/grid/gpnp/rac-two/profiles/peer/
[grid@rac-two peer]$ ls -l
total 12
-rw-r--r-- 1 grid oinstall 1857 Feb 25 21:54 profile.old
-rw-r--r-- 1 grid oinstall 1830 Feb 13 02:27 profile_orig.xml
-rw-r--r-- 1 grid oinstall 1896 Feb 25 21:58 profile.xml
[grid@rac-two peer]$ cp profile.xml profile.xml_bak
[grid@rac-two peer]$ ls -ltr
total 16
-rw-r--r-- 1 grid oinstall 1830 Feb 13 02:27 profile_orig.xml
-rw-r--r-- 1 grid oinstall 1857 Feb 25 21:54 profile.old
-rw-r--r-- 1 grid oinstall 1896 Feb 25 21:58 profile.xml
-rw-r--r-- 1 grid oinstall 1896 Mar 17 17:48 profile.xml_bak
[grid@rac-two peer]$