- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: 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
09-25-2002 01:34 AM
09-25-2002 01:34 AM
Mirroring
I also have a HP DISK SYSTEM 2100 with 2 x 36 GB disks.
OS is UX 11.
What steps must i follow (through SAM) to mirror these 2 disks.
Volume group should be vg01. Hardware path's are /dev/dsk/c4t8d0 and /dev/dsk/c4t10d0.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2002 02:19 AM
09-25-2002 02:19 AM
Re: Mirroring
In sam add your vgo1 with one disk - create your lvols and then extend it adding the second disk.
In logical volumes select your lvols (one by one) and then in actions select "Change the number of mirror copies - (changee the 0 to 1)
Do this for each lvol in vg01.
HTH
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2002 02:47 AM
09-25-2002 02:47 AM
Re: Mirroring
If both the disks(2x36GB) are already under a same/different voulme group then you can't do the mirror. Since total disk size has to double the size of existing vg.
In your case if you have data on one 36GB(disk1) disk and other(disk2) is empty then you can mirror the disk1 to disk2 using lvcreate. If data is present on both the disk1 and disk2 then you can mirror only lv's provided suffcient empty space exist ( actually the size of lv to be mirrored)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2002 05:16 AM
09-25-2002 05:16 AM
Re: Mirroring
Be patient with points.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2002 06:31 AM
09-25-2002 06:31 AM
Re: Mirroring
# mkdir /dev/vg01
# mknod /dev/vg01/group c 64 0x010000
==> Minor number 0x010000 must be unique.
# pvcreate /dev/rdsk/c4t8d0
# pvcreate /dev/rdsk/c4t10d0
# vgcreate -g PVG1 /dev/vg01 /dev/dsk/c4t8d0
==> Create your VG and put c4t8d0 in PVG1.
# vgextend -g PVG2 /dev/vg01 /dev/dsk/c4t10d0
==> Extend your VG and put c4t10d0 in PVG2.
# lvcreate -L 1200 -m 1 -s g -n lvol1 /dev/vg01
==> Creating a 1.2GB LV, mirror 1 copy with PVG strict. That way you'll always be sure that you mirrored copy reside in a different PVG (in this case in c4t10d0).
# newfs -F vxfs /dev/vg01/rlvol1
==> Format lvol1.
# mkdir /opt/apps
# mount /dev/vg01/lvol1 /opt/apps
# vi /etc/fstab
==> Edit appropriately to make the mount point permanent.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2002 06:34 AM
09-25-2002 06:34 AM
Re: Mirroring
Please let us know if the following does not work.
Click search on the left.
Type in "mirror root" in the search string.
You should atleast get 50 threads on detailed step-by-step procedures.
-Sri