ORACLE 12C 三节点 RAC 无法找到候选磁盘

简介:

一、描述

测试安装三节点Oracle 12C RAC,笔记本配置双核i5 16g内存,每台虚机分配4G 内存。

在集群软件安装过程中,无法找到候选磁盘,如下图所示:


wKioL1mX5TLxobFJAAKDNGrderk630.png-wh_50


wKiom1mX5kaiOUtiAAIMCTMt2Ck362.png-wh_50


二、处理过程

观察磁盘头状态,发现问题的原因。因为是测试环境,共享磁盘使用的是openfiler,之前11g rac 使用了原有磁盘,这里需要dd一下,清理一下元数据,然后重新扫一下磁盘。命令如下:

[root@rac01 rules.d]# dd if=/dev/zero of=/dev/sde bs=4096 count=256 
256+0 records in
256+0 records out
1048576 bytes (1.0 MB) copied, 0.00297706 s, 352 MB/s
[root@rac01 rules.d]# dd if=/dev/zero of=/dev/sdf bs=4096 count=256 
256+0 records in
256+0 records out
1048576 bytes (1.0 MB) copied, 0.00189521 s, 553 MB/s


知识点连接:

http://docs.oracle.com/database/122/REFRN/V-ASM_DISK.htm#REFRN30170

V$ASM_DISK

了解header_status 的含义

V$ASM_DISK displays one row for every disk discovered by the Oracle Automatic Storage Management (Oracle ASM) instance, including disks that are not part of any disk group.

HEADER_STATUS

VARCHAR2(12)

Per-instance status of the disk as seen by discovery:

  • UNKNOWN - Oracle ASM disk header has not been read

  • CANDIDATE - Disk is not part of a disk group and may be added to a disk group with the ALTER DISKGROUP statement

  • INCOMPATIBLE - Version number in the disk header is not compatible with the Oracle ASM software version

  • PROVISIONED - Disk is not part of a disk group and may be added to a disk group with the ALTER DISKGROUP statement. The PROVISIONED header status is different from the CANDIDATE header status in that PROVISIONED implies that an additional platform-specific action has been taken by an administrator to make the disk available for Oracle ASM.

  • MEMBER - Disk is a member of an existing disk group. No attempt should be made to add the disk to a different disk group. The ALTER DISKGROUP statement will reject such an addition unless overridden with the FORCE option.

  • FORMER - Disk was once part of a disk group but has been dropped cleanly from the group. It may be added to a new disk group with the ALTER DISKGROUP statement.

  • CONFLICT - Oracle ASM disk was not mounted due to a conflict

  • FOREIGN - Disk contains data created by an Oracle product other than Oracle ASM. This includes data files, logfiles, and OCR disks.










本文转自 roidba 51CTO博客,原文链接:http://blog.51cto.com/roidba/1957615,如需转载请自行联系原作者
目录
相关文章
|
5月前
|
运维 Oracle 前端开发
Oracle 11g RAC集群日常运维命令总结
Oracle 11g RAC集群日常运维命令总结
117 2
|
5月前
|
Oracle 关系型数据库
分布式锁设计问题之Oracle RAC保证多个节点写入内存Page的一致性如何解决
分布式锁设计问题之Oracle RAC保证多个节点写入内存Page的一致性如何解决
|
6月前
|
存储 负载均衡 Oracle
|
6月前
|
存储 Oracle 关系型数据库
|
8月前
|
存储 Oracle 关系型数据库
Oracle RAC:数据库集群的舞动乐章
【4月更文挑战第19天】Oracle RAC是Oracle提供的高可用性数据库解决方案,允许多个实例共享同一数据库,确保业务连续性和数据完整性。通过集群件和全局缓存服务实现服务器间的协调和通信。RAC提供高可用性,通过故障转移应对故障,同时提升性能,多个实例并行处理请求。作为数据管理员,理解RAC的架构和管理至关重要,以发挥其在数据管理中的最大价值。
|
8月前
|
存储 运维 Oracle
Oracle系列十八:Oracle RAC
Oracle系列十八:Oracle RAC
|
8月前
|
Oracle 关系型数据库
oracle rac 手工安装补丁,不适用auto
oracle rac 手工安装补丁,不适用auto
88 3
|
8月前
|
Oracle 关系型数据库
oracle Hanganalyze no RAC
oracle Hanganalyze no RAC
50 0
|
Oracle 关系型数据库 Java
分享一个 Oracle RAC 模式下客户端建立JDBC初始连接时因ONS造成应用启动时卡顿30秒问题的排查分析案例
分享一个 Oracle RAC 模式下客户端建立JDBC初始连接时因ONS造成应用启动时卡顿30秒问题的排查分析案例

推荐镜像

更多