脚踏实地、勇往直前!
全部博文(1005)
分类: Oracle
2014-02-09 16:19:20
OS:Red Hat Linux As 5
DB:10.2.0.5.6
今天使用export手工备份ocr,执行如下命令的时候发现命令一直在执行,感觉是hang住了,按理说导出ocr是很快完成的,怎么感觉一直无法完成呢.
[root@node1 ocrbak]#/u01/app/oracle/product/10.2.0/crs_1/bin/ocrconfig -export /u01/app/oracle/ocr_export140210.bak
注意$ORACLE_HOME目下也有ocrconfig这个文件,正确是使用$ORA_CRS_HOME目录下的orcconfig文件.
一直等了很久还报了错误.
[root@node1 ocrbak]# /u01/app/oracle/product/10.2.0/crs_1/bin/ocrconfig -export /u01/app/oracle/ocr_export140210_06.bak
PROT-4: Failed to retrieve data from the cluster registry
下面查看日志,看到底导出的过程中oracle做了什么.
节点1:
查看日志:/u01/app/oracle/product/10.2.0/crs_1/log/node1/alertnode1.log
[crsd(1521)]CRS-1005:The OCR upgrade was completed. Version has changed from 169870592 to 169870592. Details in /u01/app/oracle/prod
uct/10.2.0/crs_1/log/node1/crsd/crsd.log.
2014-02-09 01:34:01.842
[crsd(3184)]CRS-1012:The OCR service started on node node1.
2014-02-09 01:34:03.314
[crsd(3184)]CRS-1005:The OCR upgrade was completed. Version has changed from 169870592 to 169870592. Details in /u01/app/oracle/prod
uct/10.2.0/crs_1/log/node1/crsd/crsd.log.
2014-02-09 01:34:16.668
[crsd(3721)]CRS-1012:The OCR service started on node node1.
2014-02-09 01:34:18.321
[crsd(3721)]CRS-1005:The OCR upgrade was completed. Version has changed from 169870592 to 169870592. Details in /u01/app/oracle/prod
uct/10.2.0/crs_1/log/node1/crsd/crsd.log.
2014-02-09 01:34:32.658
[crsd(4271)]CRS-1012:The OCR service started on node node1.
2014-02-09 01:35:05.281
[crsd(4271)]CRS-1201:CRSD started on node node1.
节点2:
查看日志/u01/app/oracle/product/10.2.0/crs_1/log/node2/alertnode2.log
[crsd(8394)]CRS-1005:The OCR upgrade was completed. Version has changed from 169870592 to 169870592. Details in /u01/app/oracle/prod
uct/10.2.0/crs_1/log/node2/crsd/crsd.log.
2014-02-09 01:33:59.780
[crsd(8394)]CRS-1012:The OCR service started on node node2.
2014-02-09 01:34:14.627
[crsd(8952)]CRS-1005:The OCR upgrade was completed. Version has changed from 169870592 to 169870592. Details in /u01/app/oracle/prod
uct/10.2.0/crs_1/log/node2/crsd/crsd.log.
2014-02-09 01:34:14.642
[crsd(8952)]CRS-1012:The OCR service started on node node2.
2014-02-09 01:34:34.035
[crsd(9509)]CRS-1005:The OCR upgrade was completed. Version has changed from 169870592 to 169870592. Details in /u01/app/oracle/prod
uct/10.2.0/crs_1/log/node2/crsd/crsd.log.
2014-02-09 01:34:34.041
[crsd(9509)]CRS-1012:The OCR service started on node node2.
2014-02-09 01:34:52.059
[crsd(9509)]CRS-1201:CRSD started on node node2.
从以上日志发现,export过程中ocr在做upgrade操作,在整个过程中crs无法访问,从如下的命令可以看出:
node1-> crsctl check crs
CSS appears healthy
Cannot communicate with CRS
EVM appears healthy
node2-> crsctl check crs
CSS appears healthy
Cannot communicate with CRS
EVM appears healthy
奇怪的是客户端还是可以连接数据库的.
-- The End --