Oracle10g OCR及Voting Disk的
Oracle10g OCR及Voting Disk的備份
在Oracle10g RAC環境中,OCR及Voting Disk對於叢集來說都是非常重要的。
那麼如何對兩者進行備份並且能夠在故障時進行恢復就顯得極為重要。
OCR的資料Oracle會自動執行備份,通過ocrconfig -showbackup命令可以檢視這些備份:
bash-2.05$ ocrconfig -showbackup
db490-9 2008/03/01 19:26:29 /opt/oracle/product/10.2.0/crs10g/cdata/crs
db490-9 2008/03/01 15:26:29 /opt/oracle/product/10.2.0/crs10g/cdata/crs
db490-9 2008/03/01 11:26:29 /opt/oracle/product/10.2.0/crs10g/cdata/crs
db490-9 2008/02/29 03:26:26 /opt/oracle/product/10.2.0/crs10g/cdata/crs
db490-9 2008/02/22 03:26:13 /opt/oracle/product/10.2.0/crs10g/cdata/crs
bash-2.05$ hostname
db480-5
注意這個備份只會儲存在一個節點上,並非所有節點都會記錄這個備份。
在備份節點的相應目錄下我們可以找到這些備份:
$ cd /opt/oracle/product/10.2.0/crs10g/cdata/crs
$ ls -al
total 66420
drwxrwxr-x 2 oracle dba 512 Mar 1 19:26 .
drwxrwxr-x 4 oracle dba 512 Nov 23 16:39 ..
-rw-r--r-- 1 root root 4845568 Mar 1 19:26 backup00.ocr
-rw-r--r-- 1 root root 4845568 Mar 1 15:26 backup01.ocr
-rw-r--r-- 1 root root 4845568 Mar 1 11:26 backup02.ocr
-rw-r--r-- 1 root root 4845568 Feb 29 03:26 day.ocr
-rw-r--r-- 1 root root 4845568 Mar 1 03:26 day_.ocr
-rw-r--r-- 1 root root 4845568 Feb 22 03:26 week.ocr
-rw-r--r-- 1 root root 4845568 Feb 29 03:26 week_.ocr
當出現故障時,可以通過ocrconfig命令來執行恢復,通過幫助可以看到詳細的用法:
$ ocrconfig -help
Name:
ocrconfig - Configuration tool for Oracle Cluster Registry.
Synopsis:
ocrconfig [option]
option:
-export
- Export cluster register contents to a file
-import
-upgrade [
- Upgrade cluster registry from previous version
-downgrade [-version
- Downgrade cluster registry to the specified version
-backuploc
-showbackup - Show backup information
-restore
-replace ocr|ocrmirror [
-overwrite - Overwrite OCR configuration on disk
-repair ocr|ocrmirror
-help - Print out this help information
Note:
A log file will be created in
$ORACLE_HOME/log/
you have file creation privileges in the above directory before
running this tool.
如果不出意外,恢復過程將會很簡單,通過ocrconfig -restore就可以回覆這裡的物理備份。
對於voting disk可以通過dd來進行備份。
首先通過crsctl query css votedisk命令可以找到voting disk的儲存地:
bash-2.05$ crsctl query css votedisk
0. 0 /dev/rdsk/voting
located 1 votedisk(s).
然後通過dd備份:
bash-2.05$ dd if=/dev/rdsk/voting f=voting.bak
211456+0 records in
211456+0 records out
bash-2.05$ ls -al
total 211588
drwxr-xr-x 2 oracle dba 512 Mar 1 21:13 .
drwxr-xr-x 11 oracle dba 512 Jan 25 17:59 ..
-rw-r--r-- 1 oracle dba 108265472 Mar 1 21:14 voting.bak
當需要恢復時,通過dd進行恢復即可。這個voting disk記錄了什麼內容呢?
通過strings可以將其中的字串取出來看一個印象:
bash-2.05$ strings voting.bak |sort -u
CLSf
Vote
cLssTock
clSs0pEr
clsSkilL
db480-5
db490-9
z{|}
Oracle 10G RAC的ocr備份恢復
===========================================================
作者: cnhtm(http://cnhtm.itpub.net)
發表於:2010.01.26 09:52
分類:一般分類
出處:http://cnhtm.itpub.net/post/39970/496301
---------------------------------------------------------------
1、方法1:手動備份ocr及其恢復方法
備份:
如果不線上備份去掉-s online
[root@rac1 crs]# ocrconfig -export /tmp/ocr_bak.20100126 -s online
恢復:
恢復要在crs處於關閉狀態時進行
[root@rac1 crs]# ocrconfig -import /tmp/ocr_bak.20100126
2、方法2:從自動備份中恢復
oracle 10G r2 rac會每4小時自動備份ocr到$CRS_HOME/cdata/crs目錄中
這個目錄中保留每週、每天、當天每4小時的備份
檢查自動備份的crs
[root@rac1 ~]# cd $CRS_HOME/cdata/crs
[root@rac1 crs]# ls -l
total 27936
-rw-r--r-- 1 root root 4083712 Jan 26 14:28 backup00.ocr
-rw-r--r-- 1 root root 4083712 Jan 26 10:28 backup01.ocr
-rw-r--r-- 1 root root 4083712 Jan 26 06:28 backup02.ocr
-rw-r--r-- 1 root root 4083712 Jan 26 02:28 day_.ocr
-rw-r--r-- 1 root root 4083712 Jan 25 02:28 day.ocr
-rw-r--r-- 1 root root 4083712 Jan 23 02:28 week_.ocr
-rw-r--r-- 1 root root 4075520 Jan 16 02:28 week.ocr
恢復的方法是:
恢復要在crs處於關閉狀態時進行
[root@rac1 crs]# ocrconfig -restore ./backup00.ocr
--end--
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/25850100/viewspace-703921/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle10g OCR及Voting Disk的備份Oracle
- Oracle10g RAC voting disk及OCR 的映象,備份恢復[final]Oracle
- Voting Disk - Oracle10gOracle
- 管理OCR,OLR,Voting Disk(筆記)筆記
- Oracle RAC 重建 OCR 和 Voting diskOracle
- 11g RAC 中 OCR 及Voting Disk 相關操作
- Oracle 10g RAC下Voting disk和OCR的管理Oracle 10g
- Oracle 10G RAC下OCR和Voting disk的管理Oracle 10g
- 11g RAC OCR,VOTING DISK儲存全部損壞,利用自動備份,恢復OCR,VOTING DISK到新儲存。
- 轉 Oracle 10G RAC下OCR和Voting disk的管理Oracle 10g
- 【轉載】Oracle 10G RAC下OCR和Voting disk的管理Oracle 10g
- OCR And Voting Disk In Oracle 10gR2 Clusterware (RAC) [ID 1092293.1]Oracle 10g
- zt_oracle10g rac real application cluster ocr and voting disk備份恢復OracleAPP
- Placement of Voting disk and OCR Files in Oracle RAC 10g and 11gR1 [ID 293819.1]Oracle
- 關於oracle orc和voting diskOracle
- The Oracle Clusterware Voting Disk and Oracle Cluster RegistryOracle
- Oracle RAC CRS、OCR、Voting破壞重建Oracle
- voting disk 損壞解決方法---重建crs
- How to Restore a Lost Voting Disk in 10g [ID 279793.1]REST
- RAC關鍵資訊(OCR/VOTE DISK/ASM DISK HEADER)備份ASMHeader
- Oracle叢集軟體管理-OCR和Voting Files管理Oracle
- Oracle 12c RAC OCR和voting files介紹Oracle
- oracle crs voting disk損壞一例(asm+rac)OracleASM
- OCR / Vote disk Maintenance Operations: (ADD/REMOVE/REPLACE/MOVE)AINaNREM
- oracle 10GR2 CLUSTERWARE(RAC)中關於OCR和VOTING磁碟的管理資訊Oracle 10g
- OCR / Vote disk Maintenance Operations: (ADD/REMOVE/REPLACE/MOVE) [ID 428681.1]AINaNREM
- Can you create a second voting disk in a different ASM diskgroup when using External Redundancy in 1ASM
- Oracle10g TEMP 檔案Disk Space Allocation 問題Oracle
- Oracle10g RAC環境OCR的新增、刪除、備份Oracle
- Linux: How To Setup UDEV Rules For RAC OCR Voting Dev On SLES10,RHEL5_414897.1Linuxdev
- ORACLE 10.2.0.5 RAC OCR&vote disk 磁碟遷移 DG Rebalance測試Oracle
- OCR/Vote disk 維護操作: (新增/刪除/替換/移動) (文件 ID 1674859.1)
- 官方版本的關於 OCR / Vote disk 維護: (ADD/REMOVE/REPLACE/MOVE) 收藏此主題REM
- oracle10g rac 表決盤損壞、ocr損壞處理Oracle
- 【OCR】OCR備份策略及備份介質有效性驗證
- OCR表單識別SDK的部署及應用
- ORA-15020:discoverd duplicate ASM disk "XXX_CJCDB_OCR_0002"ASM
- 【MOS】OCR/Vote disk 維護操作: (新增/刪除/替換/移動) (文件 ID 1674859.1)