1753640 Members
5432 Online
108798 Solutions
New Discussion юеВ

Re: SG disk issue

 
SOLVED
Go to solution
Michael J MacDonald
Occasional Contributor

SG disk issue

I have a cluster with 2 l2000 and ds2400 disk, I had a 36gb disk go bad.
I replaced the disk and I now get the following when I do a vgdisplay:

vgdisplay: Warning: couldn't query physical volume "/dev/dsk/c4t0d0":
The specified path does not correspond to physical volume attached to
this volume group
vgdisplay: Warning: couldn't query all of the physical volumes.
VG Name /dev/vgdm01
VG Write Access read/write
VG Status available, exclusive
Max LV 255
Cur LV 3
Open LV 3
Max PV 16
Cur PV 6
Act PV 5
Max PE per PV 8683
VGDA 10
PE Size (Mbytes) 4
Total PE 43405
Alloc PE 43375
Free PE 30
Total PVG 0
Total Spare PVs 0
Total Spare PVs in use 0

vgdisplay: Warning: couldn't query physical volume "/dev/dsk/c4t0d0":
The specified path does not correspond to physical volume attached to
this volume group
vgdisplay: Warning: couldn't query all of the physical volumes.
--- Logical volumes ---
LV Name /dev/vgdm01/lvol1
LV Status available/stale
LV Size (Mbytes) 34700
Current LE 8675
Allocated PE 17350
Used PV 1

vgdisplay: Warning: couldn't query physical volume "/dev/dsk/c4t0d0":
The specified path does not correspond to physical volume attached to
this volume group
vgdisplay: Warning: couldn't query all of the physical volumes.
LV Name /dev/vgdm01/lvol2
LV Status available/syncd
LV Size (Mbytes) 34700
Current LE 8675
Allocated PE 17350
Used PV 2

vgdisplay: Warning: couldn't query physical volume "/dev/dsk/c4t0d0":
The specified path does not correspond to physical volume attached to
this volume group
vgdisplay: Warning: couldn't query all of the physical volumes.
LV Name /dev/vgdm01/lvol3
LV Status available/syncd
LV Size (Mbytes) 34700
Current LE 8675
Allocated PE 17350
Used PV 2


--- Physical volumes ---
PV Name /dev/dsk/c6t0d0
vgdisplay: Warning: couldn't query physical volume "/dev/dsk/c4t0d0":
The specified path does not correspond to physical volume attached to
this volume group
vgdisplay: Warning: couldn't query all of the physical volumes.
PV Status available
Total PE 8681
Free PE 6
Autoswitch On

PV Name /dev/dsk/c4t1d0
vgdisplay: Warning: couldn't query physical volume "/dev/dsk/c4t0d0":
The specified path does not correspond to physical volume attached to
this volume group
vgdisplay: Warning: couldn't query all of the physical volumes.
PV Status available
Total PE 8681
Free PE 6
Autoswitch On

PV Name /dev/dsk/c6t1d0
vgdisplay: Warning: couldn't query physical volume "/dev/dsk/c4t0d0":
The specified path does not correspond to physical volume attached to
this volume group
vgdisplay: Warning: couldn't query all of the physical volumes.
PV Status available
Total PE 8681
Free PE 6
Autoswitch On

PV Name /dev/dsk/c4t2d0
vgdisplay: Warning: couldn't query physical volume "/dev/dsk/c4t0d0":
The specified path does not correspond to physical volume attached to
this volume group
vgdisplay: Warning: couldn't query all of the physical volumes.
PV Status available
Total PE 8681
Free PE 6
Autoswitch On

PV Name /dev/dsk/c6t2d0
vgdisplay: Warning: couldn't query physical volume "/dev/dsk/c4t0d0":
The specified path does not correspond to physical volume attached to
this volume group
vgdisplay: Warning: couldn't query all of the physical volumes.
PV Status available
Total PE 8681
Free PE 6
Autoswitch On

Are there any steps I need to do to get it to see the new disk???

This is what I see with an ioscan:
ioscan -fnC disk
Class I H/W Path Driver S/W State H/W Type Description
=======================================================================
disk 0 0/0/1/1.15.0 sdisk CLAIMED DEVICE SEAGATE ST336607LC
/dev/dsk/c1t15d0 /dev/rdsk/c1t15d0
disk 1 0/0/2/1.15.0 sdisk CLAIMED DEVICE SEAGATE ST336607LC
/dev/dsk/c3t15d0 /dev/rdsk/c3t15d0
disk 3 0/2/0/0.8.0.255.1.0.0 sdisk CLAIMED DEVICE HP 36.4GST336704FC
/dev/dsk/c4t0d0 /dev/rdsk/c4t0d0
3 REPLIES 3
melvyn burnard
Honored Contributor
Solution

Re: SG disk issue

have you done a vgcfgrestore to the disk to replace the LVM information?#
If not, you will get this type of error
My house is the bank's, my money the wife's, But my opinions belong to me, not HP!
Torsten.
Acclaimed Contributor

Re: SG disk issue

You just replaced the disk, no additional steps taken?


You need to restore the LVM configuration to the disk.

# vgcfgrestore -n /dev/vgdm01 /dev/rdsk/c4t0d0

activate the VG again from the active node

# vgchange -a e /dev/vgdm01

sync the disks

# vgsync vgdm01

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
Michael J MacDonald
Occasional Contributor

Re: SG disk issue

Thanks, The vgsync was the step I did not do.
It is fine now.