- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Mirror Procedure
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-27-2012 03:41 AM
06-27-2012 03:41 AM
Dear all,
i have a question how i can create the mirror for the logical volume on 2 diffrent disks??!!
thanks
Solved! Go to Solution.
- Tags:
- mirroring
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2012 01:10 AM
06-28-2012 01:10 AM
SolutionYou should:
- have the MirrorDisk product installed
- have 2 different disks included as PVs in your Volume Group (you can have more than two if necessary)
- have enough free extents for the mirror on the PVs that don't already contain parts of the LV to be mirrored
The default allocation policy ("strict", lvcreate/lvchange -s y) for a LV will automatically make sure that each extent of the mirror copy will not be placed on the same PV as the corresponding original extent.
If your original VG already occupies two or more disks (including a LV that is located on two or more disks), you may want to configure PVGs (Physical Volume Groups) and set the LV allocation policy to PVG-strict (lvchange -s g) to have better control of where the mirror copies of the extents will end up. See "man lvmpvg" for more information.
(For example, if you have in your VG two small disks A and B, and add a single larger disk C for the purpose of mirroring both original disks, you might want to configure PVGs so that A and B belong to one PVG and C to another, and switch the LVs to PVG-strict mode; this way the mirror logic will automatically build mirrors only A <-> C and B <-> C, instead of mirroring any extents A <-> B even if there would be enough free space to do that.)
If you need to mirror the system volume group (vg00), you should keep in mind that the bootloader is located outside the LVM-controlled area of the disk and needs to be duplicated separately. Google for HP whitepaper titled "When Good Disks go Bad" to find detailed step-by-step instructions for mirroring, including the extra steps required when mirroring a system disk. Duplicating the bootloader requires special steps at the beginning of the mirroring procedure: if you don't do them at that time, they cannot be done later without destroying and rebuilding the entire mirror.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2012 09:03 AM
06-28-2012 09:03 AM
Re: Mirror Procedure
thanks