1.檢查olr 的狀態:
[root@vmrac1 ~]# ocrcheck -local
Status of Oracle Local Registry is as follows :
Version : 3
Total space (kbytes) : 262120
Used space (kbytes) : 2748
Available space (kbytes) : 259372
ID : 935756415
Device/File Name : /u02/app/11.2.0.3/grid/cdata/vmrac1.olr
Device/File integrity check succeeded
Local registry integrity check succeeded
Logical corruption check succeeded
2.將olr的內容轉儲到txt 文檔,可查看olr的內容:
# ocrdump -local -stdout
3.導出/導入 olr 的內容:
--- 導出 OLR
# ocrconfig –local –export file_name
/*file_name 為導入文件,導出的文件名,這個文件名是自定的 eg:olr_myhost1_20090603_0130_export */
--- 導入 OLR:
# ocrconfig –local –import file_name
/*file_name 為導入文件,導出的文件名,這個文件名是自定的 eg:olr_myhost1_20090603_0130_export */
note:
》 Oracle recommends that you use the -manualbackup and -restorecommands and not the -importand -exportcommands.
》 When exporting OLR, Oracle recommends including "olr", the host name, and the timestamp in the name string.
For example:olr_myhost1_20090603_0130_export
4.手動備份OLR:
# ocrconfig –local –manualbackup
olr 會在grid 安裝完成後,或者升級後備份一次。之後就不會自動備份 。oracle 建議在對 ocr 存儲遷移後對OLR 進行手動備份一次。
**OLR缺省備份目錄:Grid_home/cdata/host_name.
----修改OLR 備份目錄:
ocrconfig -local -backuploc new_olr_backup_path
----查看olr 備份文件內容:
ocrdump -local -backupfile olr_backup_file_name
這裡需要注意下 olr:ocrconfig -manualbackup 和 ocrconfig -local -restore 是配套使用的,ocrconfig -local -export 和 ocrconfig -local -import 是配套使用的,也就是說 ocrconfig -local -export file_name 導出的文件不用用作 ocrconfig -local -restore 使用
5.還原OLR:
To restore OLR:
----停crs
# crsctl stop crs
----恢復OLR:
# ocrconfig -local -restore file_name /*file_name為olr的備份路徑中的文件名,可以通過 ocrconfig -local -showbackup 來查看*/
-----確認olr 的狀態(檢查olr 內容的邏輯完整性):
# ocrcheck -local
----重啟crs
# crsctl start crs
----使用cvu驗證olr 在集群中的完整性(注意:不檢查olr 內容的邏輯完整性)
$ cluvfy comp olr
grid@vmrac1 ~]$ cluvfy comp olr
Verifying OLR integrity
Checking OLR integrity...
Checking OLR config file...
OLR config file check successful
Checking OLR file attributes...
OLR file check successful
WARNING:
This check does not verify the integrity of the OLR contents. Execute 'ocrcheck -local' as a privileged user to verify the
contents of OLR.
OLR integrity check passed
Verification of OLR integrity was successful.