- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: recovering extend based striping mirror
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- 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
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2003 12:32 PM
06-18-2003 12:32 PM
recovering extend based striping mirror
Thanks to all that answer now and have answered so often in the past.
-Chuck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2003 12:39 PM
06-18-2003 12:39 PM
Re: recovering extend based striping mirror
Instructions for replacing a failed disk (mirrored or not; hot-swappable or not) can be found in the HP-UX Software Recovery Handbook (via the Knowledge Trees in Maintenance and Support) chapter16 -- LVM
http://www2.itrc.hp.com/service/iv/docDisplay.do?docId=/DE_SW_UX_swrec_EN_01_E/LVM.pdf
Yes, the whole idea of mirroring is that you will be able to (continue) to access and update data if one mirror fails. The quorum applies during volume group activation.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2003 12:47 PM
06-18-2003 12:47 PM
Re: recovering extend based striping mirror
Say the disk is c6t5d0. If it can be replace online, then the following procedure would do.
1. Replace the disk
2. Run ioscan and make sure the disk is claimed.
3. Run vgcfgrestore on the disk
#vgcfgrestore -n vg01 /dev/rdsk/c6t5d0
#vgchange -a y vg01
#vgsync vg01
This should put back the stripes as well the mirror.
If you have to shutdown the box prior to replacing the disk, then edit /etc/lvmrc and make AUTO_VG_ACTIVATE=0
This will not activate your vg01 during the boot. So, you will not see "The disk corresponding to volume group..." errors.
Run those three steps again followed by "mount -a" to get your filesystems mounted. Revert back the changes to your old lvmrc.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2003 12:52 PM
06-18-2003 12:52 PM
Re: recovering extend based striping mirror
I would have added these precautions. Take backup of your data while it is still up and running. Also create a make_tape_recovery tape just in case if you get into unknown boot issues.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2003 12:59 PM
06-18-2003 12:59 PM
Re: recovering extend based striping mirror
This is the problem with raid 0, no mirror. Mirroring doesn't come in until raid 1.
Because of this problem a lot of time you'll see raid 10 which is raid 0 and 1 combined. For example, that's striped disks plus another 5 acting as the mirrors.
Look into LVM stipe and mirror with -D and 1 mb stipe extents.