- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Mirror
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-05-2004 09:31 PM
09-05-2004 09:31 PM
What have I to do to configure mirror, step by step?.
Is the second disk (mirror) bootable as the first (main) disk?.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2004 09:38 PM
09-05-2004 09:38 PM
Re: Mirror
Did you mean you have one free disk?. If so, say it c2t6d0 and follow the below procedure.
#pvcreate -f -B /dev/rdsk/c2t6d0
#mkboot -l /dev/rdsk/c2t6d0
#vgextend vg00 /dev/dsk/c2t6d0
#lvlnboot -v
Make sure it is recognized as a boot disk in the above output. Then
#mkboot -a "hpux -lq(;0)/stand/vmunix" /dev/rdsk/c2t6d0
# mkboot -b /usr/sbin/diag/lif/updatediaglif2 -p ISL -p AUTO -p HPUX -p LABEL /dev/rdsk/c2t6d0
#lvextend -m 1 /dev/vg00/lvol1 /dev/dsk/c2t6d0
#lvextend -m 1 /dev/vg00/lvol2 /dev/dsk/c2t6d0
#lvextend -m 1 /dev/vg00/lvol3 /dev/dsk/c2t6d0
(Follow the above for rest of the lvols in vg00). Ensure lvol1 is the first logical volume mirrored followed by lvol2 and lvol3.
Once the mirroing is done, do
#lvlnboot -b /dev/vg00/lvol1
#lvlnboot -r /dev/vg00/lvol3
#lvlnboot -s /dev/vg00/lvol2
#lvlnboot -d /dev/vg00/lvol2
Assuming that lvol1 - stand, lvol3 -root, lvol2 as primary swap. Change the logical volume names if they are different.
#lvlnboot -v
Make sure both the disks are appearing as bootable with lvol1,2 and 3 are on both of them.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2004 09:45 PM
09-05-2004 09:45 PM
Re: Mirror
First you have to buy Mirror-UX software.
http://www.software.hp.com/portal/swdepot/displayProductInfo.do?productNumber=B2491BA
Second you need a free disk in both your servers VG00 volume group.
for the next steps, take Sri's notes above.
Best regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2004 09:56 PM
09-05-2004 09:56 PM
Re: Mirror
there is no need to use such long syntax
#mkboot -a "hpux -lq(;0)/stand/vmunix" /dev/rdsk/c2t6d0
and not using quorum parameter must be set for both disk (orginal and mirror)
mkboot -a "hpux -lq" /dev/rdsk/first_disk
mkboot -a "hpux -lq" /dev/rdsk/second_disk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2004 06:18 PM