Operating System - HP-UX
1747987 Members
4757 Online
108756 Solutions
New Discussion юеВ

Re: Unable to add new disk to one VG, but able to add to other VG

 
SOLVED
Go to solution
Madhu_17
Regular Advisor

Re: Unable to add new disk to one VG, but able to add to other VG

Fred,

I could able to do that lvextend successfully.

Pls find below the o/p

lvextend -m 1 /dev/vg02/u02 /dev/dsk/c3t4d0
The newly allocated mirrors are now being synchronized. This operation will
take some time. Please wait ....
lvextend: Couldn't re-synchronize stale partitions of the logical volume: I/O error
lvextend: Couldn't resynchronize logical volume "/dev/vg02/u02".

lvdisplay showing stale for this disk.
Fred Ruffet
Honored Contributor

Re: Unable to add new disk to one VG, but able to add to other VG

So all this thread to get to this conclusion : Your disk is down :-(

Regards,

Fred
--

"Reality is just a point of view." (P. K. D.)
Todd McDaniel_1
Honored Contributor

Re: Unable to add new disk to one VG, but able to add to other VG

Madhu,

I dont see where you ever did a vgcfgrestore to restore the lvm info to the disk.

You MUST do this as a step to restore the mirror.

====================
#vgcfgrestore -n /dev/vg02 /dev/dsk/c3t4d0
====================

You cant resolve the stale extents till you do this. After which you can then vgsync the disk and then add it back in as the mirror.
Unix, the other white meat.
Todd McDaniel_1
Honored Contributor

Re: Unable to add new disk to one VG, but able to add to other VG


Oops I meant to say, vgsync vg02 then lvextend the mirror.
Unix, the other white meat.
Madhu_17
Regular Advisor

Re: Unable to add new disk to one VG, but able to add to other VG

aa