- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Mirror Break
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
02-13-2003 10:12 PM
02-13-2003 10:12 PM
Could someone help me here,
I have two disk mirrrored and I would like to break the mirror.
Please help me with the steps.
Thanks in advance
Joyce
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2003 10:31 PM
02-13-2003 10:31 PM
Solution# lvreduce -m 0 /dev/vg00/lvol1 /dev/dsk/
will break the mirror. repeat the same with all lvs.
Also, here is a good step by step thread:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x6967c1c4ceddd61190050090279cd0f9,00.html
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2003 10:36 PM
02-13-2003 10:36 PM
Re: Mirror Break
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2003 10:38 PM
02-13-2003 10:38 PM
Re: Mirror Break
vgdisplay -v /dev/vg00
Note down the volumes you are trying to break the mirror.
Then just do a
#lvreduce -m 0 /dev/vg00/lvol1 /dev/dsk/cXtYdZ
Here cXtYdZ is the mirror disk
Here above will remove the mirror of lvol1.
Likewise remove the volumes which need mirror break.
After doing that you can remove the mirror drive (that was just un-mirrored) using
#vgreduce /dev/vg00 /dev/dsk/cXtYdZ
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2003 05:05 AM
02-17-2003 05:05 AM
Re: Mirror Break
lvsplit -s m lv_path
This will create an LVOL with a suffix of "m" attached to the original LVOL name. You can then use LVMERGE to merge them again later, but NOTE!!! the manpage entry for LVMERGE, especially the destination and source paths....
lvchange -m 0 simply throws the mirror away.