溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

ORACLE 12C 三節(jié)點 RAC 無法找到候選磁盤

發(fā)布時間:2020-09-07 21:11:06 來源:網(wǎng)絡(luò) 閱讀:454 作者:roidba 欄目:關(guān)系型數(shù)據(jù)庫


一、描述

測試安裝三節(jié)點Oracle 12C RAC,筆記本配置雙核i5 16g內(nèi)存,每臺虛機分配4G 內(nèi)存。

在集群軟件安裝過程中,無法找到候選磁盤,如下圖所示:


ORACLE 12C 三節(jié)點 RAC 無法找到候選磁盤


ORACLE 12C 三節(jié)點 RAC 無法找到候選磁盤


二、處理過程

觀察磁盤頭狀態(tài),發(fā)現(xiàn)問題的原因。因為是測試環(huán)境,共享磁盤使用的是openfiler,之前11g rac 使用了原有磁盤,這里需要dd一下,清理一下元數(shù)據(jù),然后重新掃一下磁盤。命令如下:

[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.




向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI