Oracle10g OCR及Voting Disk的备份

Oracle10g OCRVoting Disk的备份

Oracle10g RAC环境中,OCRVoting 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 [-s online]
                                                    - Export cluster register contents to a file
                -import                   - Import cluster registry contents from a file
                -upgrade [ []]
                                                    - Upgrade cluster registry from previous version
                -downgrade [-version ]
                                                    - Downgrade cluster registry to the specified version
                -backuploc                 - Configure periodic backup location
                -showbackup                        - Show backup information
                -restore                 - Restore from physical backup
                -replace ocr|ocrmirror [] - Add/replace/remove a OCR device/file
                -overwrite                          - Overwrite OCR configuration on disk
                -repair ocr|ocrmirror     - Repair local OCR configuration
                -help                              - Print out this help information

Note:
        A log file will be created in
        $ORACLE_HOME/log//client/ocrconfig_.log. Please ensure
        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 RACocr备份恢复

===========================================================

作者: 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/25198367/viewspace-688870/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/25198367/viewspace-688870/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值