Subscribe to Posts by Email

Subscriber Count

    696

Disclaimer

All information is offered in good faith and in the hope that it may be of use for educational purpose and for Database community purpose, but is not guaranteed to be correct, up to date or suitable for any particular purpose. db.geeksinsight.com accepts no liability in respect of this information or its use. This site is independent of and does not represent Oracle Corporation in any way. Oracle does not officially sponsor, approve, or endorse this site or its content and if notify any such I am happy to remove. Product and company names mentioned in this website may be the trademarks of their respective owners and published here for informational purpose only. This is my personal blog. The views expressed on these pages are mine and learnt from other blogs and bloggers and to enhance and support the DBA community and this web blog does not represent the thoughts, intentions, plans or strategies of my current employer nor the Oracle and its affiliates or any other companies. And this website does not offer or take profit for providing these content and this is purely non-profit and for educational purpose only. If you see any issues with Content and copy write issues, I am happy to remove if you notify me. Contact Geek DBA Team, via geeksinsights@gmail.com

Pages

Installer has detected that the diskgroup name provided already exists on the system.

Hello,

After a failed crs installation, we have removed everything by using deconfigure and deinstall utility and freshly started the grid infrastruction installation, and we got this error

Checking Temp space: must be greater than 120 MB.   Actual 2395 MB    Passed
Checking swap space: must be greater than 150 MB.   Actual 32767 MB    Passed
Preparing to launch Oracle Universal Installer from /tmp/OraInstall2013-05-13_05-23-16AM. Please wait ...[FATAL] [INS-30516] Please specify unique disk groups.
   CAUSE: Installer has detected that the diskgroup name provided already exists on the system.
   ACTION: Specify different disk group.

Some background:-
1) Not using asm libraries or ASM lib disk we are just providing luns with udev rules

	[root@**** rsp_files]# cd /dev/oracleasm/disks
	[root@**** rsp_files]# ls -ltr

2) Partitions does not contain any valid partition table ,means no information written on the partitions

	fdisk -l /dev/mapper/asm1grid
	Disk /dev/mapper/asmt1grid: 10.7 GB, 10737745920 bytes
	255 heads, 63 sectors/track, 1305 cylinders
	Units = cylinders of 16065 * 512 = 8225280 bytes
	Disk /dev/mapper/asmt1grid doesn't contain a valid partition table

3) And my deconfigure clusterware and deinstall worked perfectly, no errors,

Where else could be the disk group information that installer is looking and failing?

Well, there is nothing much to scratch out our head, its just there in the lun headers and stayed there. So it wont use it any more we just need to scrap it out. To do the same dd command would be right choice.

          dd if=/dev/zero of=/dev/mapper/asm1grid bs=1048576 count=50 

A little explanation, i am padding my /dev/mapper/asm1grid lun with zeros of 1 mb block size and count of 50, this just an ideal , if you want u can add the blocksize also (solaris depends on the size of volume, linux 4096)

Then our installation proceeds without any issue. hope this helps to you as well.

-Thanks
Geek DBA

Comments are closed.