Mir Sayeed Hassan – Oracle Blog

Oracle DBA – Tips & Techniques | Learn with real-time examples

Instantiating disk failed while creation of ASM Disk.

Posted by Mir Sayeed Hassan on July 7th, 2021

Instantiating disk failed while creation of ASM Disk.

The below error is occur while creation of the ASM Disk in one of my test server.

[root@testdb asm_rpm]# /usr/sbin/oracleasm createdisk DATA /dev/sdc1
Writing disk header: done
Instantiating disk: failed              ------- error
Clearing disk header: done

This issue can be resolved by diable & enable the oracleasm feature as shown below

Disable the oracleasm

[root@testdb asm_rpm]# /etc/init.d/oracleasm disable
Writing Oracle ASM library driver configuration: done
Dropping Oracle ASMLib disks: [ OK ]
Shutting down the Oracle ASMLib driver: [ OK ]

Enable the oracleasm

[root@testdb asm_rpm]# /etc/init.d/oracleasm enable
Writing Oracle ASM library driver configuration: done
Initializing the Oracle ASMLib driver: [ OK ]
Scanning the system for Oracle ASMLib disks: [ OK ]

Now create the oracleasm disks

[root@testdb asm_rpm]# oracleasm createdisk DATA /dev/sdc1
Writing disk header: done
Instantiating disk: done

Note: It has been created successfully without any error.

Scan the oracleasm disks

[root@testdb asm_rpm]# oracleasm scandisks
Reloading disk partitions: done
Cleaning any stale ASM disks...
Scanning system for ASM disks...

List & verify the oracleasm disks

[root@testdb asm_rpm]# oracleasm listdisks
DATA
SQL> select DISK_NUMBER,STATE,TOTAL_MB,NAME,PATH from v$asm_disk;

DISK_NUMBER     STATE     TOTAL_MB     NAME                 PATH
--------------------------------------------------------------------------------
   0           NORMAL     10236      DATA_0000    /dev/oracleasm/disks/DATA

=====Hence tested & verified in our test env=====