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,如需转载请自行联系原作者
目录
相关文章
|
8月前
|
运维 Oracle 前端开发
Oracle 11g RAC集群日常运维命令总结
Oracle 11g RAC集群日常运维命令总结
179 2
|
8月前
|
Oracle 关系型数据库
分布式锁设计问题之Oracle RAC保证多个节点写入内存Page的一致性如何解决
分布式锁设计问题之Oracle RAC保证多个节点写入内存Page的一致性如何解决
117 0
|
9月前
|
存储 负载均衡 Oracle
|
9月前
|
存储 Oracle 关系型数据库
|
11月前
|
存储 Oracle 关系型数据库
Oracle RAC:数据库集群的舞动乐章
【4月更文挑战第19天】Oracle RAC是Oracle提供的高可用性数据库解决方案,允许多个实例共享同一数据库,确保业务连续性和数据完整性。通过集群件和全局缓存服务实现服务器间的协调和通信。RAC提供高可用性,通过故障转移应对故障,同时提升性能,多个实例并行处理请求。作为数据管理员,理解RAC的架构和管理至关重要,以发挥其在数据管理中的最大价值。
|
11月前
|
存储 运维 Oracle
Oracle系列十八:Oracle RAC
Oracle系列十八:Oracle RAC
1312 0
|
11天前
|
Oracle 安全 关系型数据库
【Oracle】使用Navicat Premium连接Oracle数据库两种方法
以上就是两种使用Navicat Premium连接Oracle数据库的方法介绍,希望对你有所帮助!
132 28
|
21天前
|
SQL Oracle 关系型数据库
【赵渝强老师】Oracle的闪回数据库
Oracle闪回数据库功能类似于“倒带按钮”,可快速将数据库恢复至 earlier 状态,无需还原备份。本文介绍了闪回数据库的使用方法及实战案例:包括设置归档模式、开启闪回功能、记录SCN号、执行误操作后的恢复步骤等。通过具体 SQL 操作演示了如何利用闪回数据库恢复被误删的用户数据。注意,使用此功能前需确保数据库为归档模式。
|
23天前
|
Oracle 关系型数据库 数据库
【赵渝强老师】Oracle数据库的闪回表
本文介绍了Oracle数据库中的闪回表(Flashback Table)功能,它能够将表的数据快速恢复到特定时间点或系统改变号(SCN),无需备份。文章通过实战示例详细演示了如何使用闪回表恢复数据,包括授权、创建测试表、记录时间与SCN号、删除数据、启用行移动功能、执行闪回操作以及验证恢复结果等步骤。同时,还展示了如何通过触发器禁止插入操作,并在闪回过程中处理触发器的启用问题。文末附有视频讲解,帮助读者更好地理解闪回表的使用方法。
69 10