Operating System - HP-UX
1753878 Members
7477 Online
108809 Solutions
New Discussion юеВ

Re: Mirroring VG00 gone bad

 
SOLVED
Go to solution
Darren Etheridge_2
Super Advisor

Mirroring VG00 gone bad

I am trying to mirror our 2 root drives VG00 -
/dev/dsk/c0t6d0 ==> /dev/dsk/c3t6d0

when trying to mirror the ldevs i get the following error:
lvextend: Couldn't re-synchronize stale partitions of the logical volume:
Device offline/Powerfailed

lvextend: Couldn't resynchronize logical volume "/dev/vg00/lvol5


Bad disk? If so, how can I be sure it's not c0t6d0? thanks in advance for your help!
12 REPLIES 12
James R. Ferguson
Acclaimed Contributor
Solution

Re: Mirroring VG00 gone bad

Hi Darren:

> Bad disk? If so, how can I be sure it's not c0t6d0?

Try:

# dd if=/dev/rdsk/c0t6d0 of=/dev/null bs=1024k count=10

Regards!

...JRF...


smatador
Honored Contributor

Re: Mirroring VG00 gone bad

Hi,

Look at the lvdisplay /dev/vg00/lvol5 | grep stale
and
pvdisplay -v /dev/dsk/c0t6d0
pvdisplay -v /dev/dsk/c3t6d0
If you have a pv state unavailable or some stale status that mean you have a bad disk.
HTH
AVV
Super Advisor

Re: Mirroring VG00 gone bad

Hi,

Try with

#diskinfo /dev/rdsk/c#t#d#

check with the pvdisplay

and do a dd to whole disk .

Darren Etheridge_2
Super Advisor

Re: Mirroring VG00 gone bad

Both Seem to come back ok


dd if=/dev/rdsk/c0t6d0 of=/dev/null bs=1024k count=10

10+0 records in
10+0 records out


dd if=/dev/rdsk/c3t6d0 of=/dev/null bs=1024k count=10

10+0 records in
10+0 records out
Darren Etheridge_2
Super Advisor

Re: Mirroring VG00 gone bad

below are the results of the pvdisplay. I am interperting my c3t6d0 is bad. Correct?

[TAL:/]pvdisplay -v /dev/dsk/c0t6d0 |grep stale


[TAL:/]pvdisplay -v /dev/dsk/c3t6d0 |grep stale
00091 stale /dev/vg00/lvol2 00059
00152 stale /dev/vg00/lvol2 00120
00162 stale /dev/vg00/lvol2 00130
00165 stale /dev/vg00/lvol2 00133
00168 stale /dev/vg00/lvol2 00136
00201 stale /dev/vg00/lvol2 00169
00283 stale /dev/vg00/lvol2 00251
00310 stale /dev/vg00/lvol2 00278
00314 stale /dev/vg00/lvol2 00282
00318 stale /dev/vg00/lvol2 00286
00334 stale /dev/vg00/lvol2 00302
00346 stale /dev/vg00/lvol2 00314
00351 stale /dev/vg00/lvol2 00319
00408 stale /dev/vg00/lvol2 00376
Darren Etheridge_2
Super Advisor

Re: Mirroring VG00 gone bad

how do i dd a whole disk?
Patrick Wallek
Honored Contributor

Re: Mirroring VG00 gone bad

>>how do i dd a whole disk?

Remove the "count=10" from the dd command line.
Darren Etheridge_2
Super Advisor

Re: Mirroring VG00 gone bad

That's what I thought... I just wanted to check b4 messing up something :)
James R. Ferguson
Acclaimed Contributor

Re: Mirroring VG00 gone bad

Hi (again):

> That's what I thought... I just wanted to check b4 messing up something :)

In this case all we are doing is reading the disk designated by the 'if' argument. It would be a catastrophic mess only if you exchanged the 'if' and 'of' devices in my example :-)

I chose a 'count=10' to generate a quick look. A full 'dd' even given the raw device and the optimal block size will take considerable time. Be patient.

Regards!

...JRF...