- Community Home
- >
- Servers and Operating Systems
- >
- Operating System - HP-UX
- >
- System Administration
- >
- Mirroring VG00 gone bad
-
-
Categories
- Topics
- Hybrid IT with Cloud
- Mobile & IoT
- IT for Data & Analytics
- Transformation
- Strategy and Technology
- Products
- Cloud
- Integrated Systems
- Networking
- Servers and Operating Systems
- Services
- Storage
- Company
- Events
- Partner Solutions and Certifications
- Welcome
- Welcome
- Announcements
- Tips and Tricks
- Feedback
-
Blogs
- Alliances
- Around the Storage Block
- Behind the scenes @ Labs
- Converged Data Center Infrastructure
- Digital Transformation
- Grounded in the Cloud
- HPE Careers
- HPE Storage Tech Insiders
- Infrastructure Insights
- Inspiring Progress
- Internet of Things (IoT)
- My Learning Certification
- Networking
- OEM Solutions
- Servers: The Right Compute
- Telecom IQ
- Transforming IT
-
Quick Links
- Community
- Getting Started
- FAQ
- Ranking Overview
- Rules of Participation
- Contact
- Email us
- Tell us what you think
- Information Libraries
- Integrated Systems
- Networking
- Servers
- Storage
- Other HPE Sites
- Support Center
- Enterprise.nxt
- Marketplace
- Aruba Airheads Community
-
Categories
-
Forums
-
Blogs
-
InformationEnglish
Mirroring VG00 gone bad
SOLVED- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-16-2010 07:54 AM
02-16-2010 07:54 AM
/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!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-16-2010 07:59 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-16-2010 08:02 AM
02-16-2010 08:02 AM
Re: Mirroring VG00 gone bad
Re: Mirroring VG00 gone bad
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
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-16-2010 08:19 AM
02-16-2010 08:19 AM
Re: Mirroring VG00 gone bad
Re: Mirroring VG00 gone bad
Try with
#diskinfo /dev/rdsk/c#t#d#
check with the pvdisplay
and do a dd to whole disk .
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-16-2010 08:21 AM
02-16-2010 08:21 AM
Re: Mirroring VG00 gone bad
Re: Mirroring VG00 gone bad
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
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-16-2010 08:24 AM
02-16-2010 08:24 AM
Re: Mirroring VG00 gone bad
Re: Mirroring VG00 gone bad
[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
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-16-2010 08:27 AM
02-16-2010 08:27 AM
Re: Mirroring VG00 gone bad
Re: Mirroring VG00 gone bad
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-16-2010 08:40 AM
02-16-2010 08:40 AM
Re: Mirroring VG00 gone bad
Re: Mirroring VG00 gone bad
Remove the "count=10" from the dd command line.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-16-2010 08:43 AM
02-16-2010 08:43 AM
Re: Mirroring VG00 gone bad
Re: Mirroring VG00 gone bad
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-16-2010 09:04 AM
02-16-2010 09:04 AM
Re: Mirroring VG00 gone bad
Re: Mirroring VG00 gone bad
> 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...
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-16-2010 11:33 AM
02-16-2010 11:33 AM
Re: Mirroring VG00 gone bad
Re: Mirroring VG00 gone bad
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-16-2010 04:12 PM
02-16-2010 04:12 PM
Re: Mirroring VG00 gone bad
Re: Mirroring VG00 gone bad
You can also refer to HP offical document
"Good disk Gone Bad".
http://docs.hp.com/en/5991-1236/When_Good_Disks_Go_Bad_WP.pdf
Thanks,
Johnson
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-16-2010 06:20 PM
02-16-2010 06:20 PM
Re: Mirroring VG00 gone bad
Re: Mirroring VG00 gone bad
Just wanted to know if you did these:
Status of the disk?
# pvdisplay /dev/dsk/c0t6d0 | grep "PV Status"
Try enabling the disk for IOs (if it is disabled)
# pvchange -a y /dev/dsk/c0t6d0
Regds..
Hewlett Packard Enterprise International
- Communities
- HPE Blogs and Forum
© Copyright 2018 Hewlett Packard Enterprise Development LP