- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- MirrorDisk/UX
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
07-31-2001 11:12 AM
07-31-2001 11:12 AM
MirrorDisk/UX
I have setup mirrior disk. I have got some doubts. Can anybody can tell me where can i find the Document for MirrorDisk/UX on HP websites. I tried http://docs.hp.com but i could not find any.
Please help......
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2001 11:20 AM
07-31-2001 11:20 AM
Re: MirrorDisk/UX
http://docs.hp.com/hpux/onlinedocs/B2355-90672/B2355-90672.html
or
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90672/B2355-90672_top.html&con=/hpux/onlinedocs/B2355-90672/00/00/74-con.html&toc=/hpux/onlinedocs/B2355-90672/00/00/74-toc.html&searchterms=mirror&queryid=20010731-122000
Prashant Deshpande.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2001 11:29 AM
07-31-2001 11:29 AM
Re: MirrorDisk/UX
At 11.x, the "Managing Systems and Workgroups: A Guide for HP-UX System Administrators" guide is a excellent source of documentation on common system administration functions.
See Managing Mirrored File Systems in Section-6:
http://docs.hp.com/hpux/onlinedocs/B2355-90742/B2355-90742.html
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2001 02:27 AM
08-01-2001 02:27 AM
Re: MirrorDisk/UX
http://forums.itrc.hp.com/cm/QuestionAnswer/1,1150,0xe6d9f9beca68d511abcd0090277a778c,00.html
Mirroring of a non bootable lvol is easier..
What seems to confuse people most when I teach them mirrordisk is that it actually does not mirror disks, but rather lvols which can be sections of disks or span multiple disks.
Later,
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2001 05:57 PM
08-02-2001 05:57 PM
Re: MirrorDisk/UX
after reading all these docs I would suggest to test the mirror before going in production.
Try to boot from alternate disk once to test it.
Steffi Jones
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2001 06:37 PM
08-02-2001 06:37 PM
Re: MirrorDisk/UX
If your trying to mirror your root volume
group (vg00) it is a very simple process.
The docs that the other guys have pointed
you to should assist you greatly, but here
is the concise process for doing this.
# pvcreate -fB /dev/rdsk/cXtXdX
# vgextend /dev/vg00 /dev/dsk/cXtXdX
# mkboot /dev/rdsk/cXtXdX
# mkboot -a "hpux -lq(;0)/stand/vmunix" /dev/rdsk/cXtXdX
# lvlnboot -R
# for LVOL in /dev/vg00/lv*
> do
> echo $LVOL
> lvextend -m 1 $LVOL
> done
As mentioned by Steffi make sure that you
test it before you proceed into any form
of production.
-Michael