- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Mirroring strategy
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
Discussions
Discussions
Discussions
Forums
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
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
тАО05-17-2006 07:01 AM
тАО05-17-2006 07:01 AM
I have 3 72-GB SCSI disks.
I need 20+GB for swap.
What's the best way to mirror them? I want to mirror swap also.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-17-2006 07:07 AM
тАО05-17-2006 07:07 AM
Re: Mirroring strategy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-17-2006 07:24 AM
тАО05-17-2006 07:24 AM
SolutionAlso note that while creating the swap lvol use the following
lvcreate -C y -r N -L size_in_MB -n swapvol_name /dev/vgname
Because swap requires contiguous and need to disallow bad block reallocation.
Also first create the swap vols, Then mirror the swapvol using
lvextend -m 1 /dev/vgname/swapvol_name pv_name
Then create the remaining vols and mirror them.
so that you know that you can get the contiguous blocks required from the disks for the swap vol.
Regards,
Ninad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-17-2006 07:29 AM
тАО05-17-2006 07:29 AM
Re: Mirroring strategy
Regards,
Ninad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-17-2006 10:58 AM
тАО05-17-2006 10:58 AM
Re: Mirroring strategy
Just create an lv that spans 1 disk, and EXACTLY half ( or half -1 if the number of extents is an odd number) of the second disk. Now lvextend -m 1 over to the third disk and the second disk (and keep them in that order in your command). But, as long as the LV that you're creating has the "Strict" attribute on, it'll do this correctly for you anyway.
Good luck!