- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Disk Mirroring
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
05-03-2002 10:32 AM
05-03-2002 10:32 AM
Disk Mirroring
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-03-2002 10:36 AM
05-03-2002 10:36 AM
Re: Disk Mirroring
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-03-2002 10:37 AM
05-03-2002 10:37 AM
Re: Disk Mirroring
First extend the volume group - man vgextend
and then entent the logical volumes Man lvextend.
vgextend /dev/vgXX /dev/dsk/device
lvextend -m 1 /dev/vgXX/lvolXX /dev/dsk/device
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-03-2002 10:37 AM
05-03-2002 10:37 AM
Re: Disk Mirroring
Then for mirroring LVM lvolx you have to give following command
lvextend -m 1 /dev/vgxx/lvolx /dev/dsk/cAtBdZ
where vgxx is the volume group under consideration.
/dev/dsk/cAtBdZ is the disk devicve name under consideration where you want to put your mirrored copy of Logical volume.
Similarly , do the same for all LVs.
MAke sure you have HP MirrorDisk/UX installed on the machine.
-pap
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-03-2002 10:51 AM
05-03-2002 10:51 AM
Re: Disk Mirroring
The LVM mirroring happens at the Logical Volume level and not in Volume group level. You need to purchase the Mirror/SW from HP, install the software and codewords. Then add the new disk to the existing volume, extend the LVs with:
# lvextend -m 1 lv_name new_pv_name
Check the mirror status with:
# lvdisplay lv_name
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-06-2002 06:28 AM
05-06-2002 06:28 AM
Re: Disk Mirroring
- Initialize new disk:
pvcreate -B /dev/rdsk/disknew
-Add the physical vol. to the VG
vgextend /dev/vgxx /dev/dsk/disknew
-Mirror the Logical volumes
lvextend -m 1 /dev/vgxx/lvol1 /devdsk/disknew
-Verify with:
lvdisplay -v /dev/vgxx/lvol1
Carlos V
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-06-2002 07:45 AM
05-06-2002 07:45 AM
Re: Disk Mirroring
#vgextend vg_name /dev/dsk/pv_name
2. mirroring the lv by using switch -m, say "1" for the copy
#lvextend -m 1 lv_name /dev/dsk/pv_name
Man vgextend and lvextend for more.