博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
几个关于oracle 11g ASM的问题
阅读量:6899 次
发布时间:2019-06-27

本文共 1100 字,大约阅读时间需要 3 分钟。

Question:

1.11g Oracle Clusterware需要的OCR和Voting disk可以存储在ASM或者集群文件系统或者NFS中。对于全新安装,裸设备不再被支持(是否有办法使用裸设备?)。 2.使用ASM时,若相关存储上的磁盘路径(disk path)名前后不一致,是否仍然可以使用?需要什么调整?

Answer:

1.在11gr2 Grid Infrastructure全新安装时是没有办法使用裸设备的(You cannot install OCR or voting disk files on raw partitions. You can install only on Oracle ASM, or on supported network-attached storage or cluster file systems. The only use for raw devices is as Oracle ASM disks.);但可以通过后续的手段将OCR和VOTING DISK移动到裸设备上,如:
1
2
3
4
5
6
7
替换OCR:
ocrconfig -
add 
rawdevice
ocrconfig -
replace
 
替换voting disk
crsctl 
add 
votedisk css  -
force
crsctl 
delete 
votedisk css  -
force

具体可以参考Metalink文档<How to ADD/REMOVE/REPLACE/MOVE Oracle Cluster Registry (OCR) and Voting Disk> 实际上强烈不建议这样做。因为如果出现问题,Oracle GCS可以拒绝提供建议。 2.ASM是通过读取磁盘头部来了解磁盘内容的;磁盘路径名在安装时需要在所有节点一致,在安装完成后即便路径名改变也不会影响到ASM的使用。 需要注意的是在AIX操作平台上分配给ASM的磁盘(ASM DISK),如果直接是HDISK形式的LUN则该HDISK不应当具有PVID(If the disk device has a PVID, then ASM will fail to mount the diskgroup created on the disk device.)。如果是裸的逻辑卷,那么所建VG应当是scaleable volume group。

本文转自maclean_007 51CTO博客,原文链接:http://blog.51cto.com/maclean/1277706

转载地址:http://bcvdl.baihongyu.com/

你可能感兴趣的文章