- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Mirror Logical Volume in another volume group
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
12-03-2001 07:30 AM
12-03-2001 07:30 AM
MDF
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2001 07:34 AM
12-03-2001 07:34 AM
Re: Mirror Logical Volume in another volume group
You can't. HP-UX MirrorDisk/UX software implements mirroring at the *logical volume* level. Since a logical volume belongs to a volume group, you cannot mirror a paricular logical volume (say /vg01/lvol1) on anything but /vg01.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2001 07:36 AM
12-03-2001 07:36 AM
Re: Mirror Logical Volume in another volume group
You cannot mirror a LV if you expect the primary and the mirror to stay on different VG.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2001 08:08 AM
12-03-2001 08:08 AM
Re: Mirror Logical Volume in another volume group
With HP-UX the mirroring of logical volumes have to be within the same volume group.
Thanks.
Prashant Deshpande.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2001 08:20 AM
12-03-2001 08:20 AM
Re: Mirror Logical Volume in another volume group
Mirroring on HPUX is provided by MirrorDisk/UX package. It's an added cost package from HP. It requires logical volumes be mirrored within the volume group.
Darrell
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2001 08:25 AM
12-03-2001 08:25 AM
Re: Mirror Logical Volume in another volume group
mirroring in another volume group is not possible, but you can use phisical volume groups. then you can build two PVG's whithin vg and mirror lvols between pv in different PVG.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2001 08:33 AM
12-03-2001 08:33 AM
SolutionDistributed File System:
# cd /dev
# mkdir vg01
# mknod /dev/vg01/group c 64 0x010000
# vgcreate -g vg01a pv1 pv2
# vgextend -g vg01b pv3 pv4
# lvrcreate -s g -D y -l 2 /dev/vg01
# lvextend -m 1 /dev/vg01/lvol1
# lvextend -L 1024 /dev/vg01/lvol1
Later,