1832645 Members
2988 Online
110043 Solutions
New Discussion

Re: unused disk?

 
SOLVED
Go to solution
GraceO
Regular Advisor

unused disk?

I was trying to create a new volume group using an 'unused disk' disk via SAM. [SAM shows the disk as unused.] I got an error saying my disk was already recorded in the lvmtab file. Looking at lvmtab, I see the disk (/dev/dsk/c8t10d0) associated with a volume group (/dev/disk5_36). When I try to view the volume group, I found it to be inactive.

When I tried to activate the volume group, I get an error, "Quorum not present, or some physical volume(s) are missing."

lvmtab looks like:
/dev/vg00
/dev/dsk/c1t2d0
/dev/disk3_36
/dev/dsk/c8t8d0
/dev/disk4_36
/dev/dsk/c8t9d0
/dev/disk5_36
/dev/dsk/c8t10d0
/dev/disk6_36
/dev/dsk/c5t8d0
/dev/dsk/c6t8d0
/dev/disk7_36
/dev/dsk/c5t9d0
/dev/disk2_18
/dev/dsk/c2t2d0
/dev/disk10_36
/dev/dsk/c6t9d0
/dev/disk11_36
/dev/dsk/c6t10d0
/dev/disk14_36
/dev/dsk/c7t10d0
/dev/dsk/c7t9d0
/dev/disk0900110
/dev/dsk/c6t11d0
/dev/disk01200110
/dev/dsk/c7t11d0
/dev/dsk/c7t8d0
/dev/disk0100110
/dev/dsk/c8t11d0
/dev/disk0800110
/dev/dsk/c5t11d0
/dev/disk0800100
/dev/dsk/c5t10d0

partial ioscan looks like:
Class I H/W Path Driver S/W State H/W Type Description
=======================================================================
disk 0 0/0/1/1.2.0 sdisk CLAIMED DEVICE FUJITSU MAJ3182MC
/dev/dsk/c1t2d0 /dev/rdsk/c1t2d0
disk 1 0/0/2/0.2.0 sdisk CLAIMED DEVICE SEAGATE ST318404LC
/dev/dsk/c2t2d0 /dev/rdsk/c2t2d0
disk 2 0/0/2/1.2.0 sdisk CLAIMED DEVICE HP DVD-ROM 305
/dev/dsk/c3t2d0 /dev/rdsk/c3t2d0
disk 3 0/1/0/0.8.0 sdisk CLAIMED DEVICE HP 36.4GST336752LC
/dev/dsk/c8t8d0 /dev/rdsk/c8t8d0
disk 4 0/1/0/0.9.0 sdisk CLAIMED DEVICE HP 36.4GST336752LC
/dev/dsk/c8t9d0 /dev/rdsk/c8t9d0
disk 5 0/1/0/0.10.0 sdisk CLAIMED DEVICE HP 36.4GST336752LC
/dev/dsk/c8t10d0 /dev/rdsk/c8t10d0
disk 18 0/1/0/0.11.0 sdisk CLAIMED DEVICE HP 36.4GMAM3367MC
/dev/dsk/c8t11d0 /dev/rdsk/c8t11d0
disk 6 0/8/0/0.8.0 sdisk CLAIMED DEVICE HP 36.4GST336752LC
/dev/dsk/c5t8d0 /dev/rdsk/c5t8d0
disk 7 0/8/0/0.9.0 sdisk CLAIMED DEVICE HP 36.4GST336752LC
/dev/dsk/c5t9d0 /dev/rdsk/c5t9d0
disk 8 0/8/0/0.10.0 sdisk CLAIMED DEVICE HP 36.4GST336752LC
/dev/dsk/c5t10d0 /dev/rdsk/c5t10d0
disk 16 0/8/0/0.11.0 sdisk CLAIMED DEVICE HP 36.4GST336753LC

Is my disk really unused? And how can I clear up lvmtab so that I can use the disk?

Any help would be greatly appreciated...
3 REPLIES 3
Mridul Shrivastava
Honored Contributor
Solution

Re: unused disk?

use vgexport to clear the vg entry from lvmtab since vg is inactive already.

Then you can create new vg on the disk after doing vgexport.
Time has a wonderful way of weeding out the trivial
Mridul Shrivastava
Honored Contributor

Re: unused disk?

Forgot to mention the command:

vgexport /dev/disk5_36
Time has a wonderful way of weeding out the trivial
GraceO
Regular Advisor

Re: unused disk?

That fixed it! Thanks!