- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: mirroring disks
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
10-10-2001 10:39 AM
10-10-2001 10:39 AM
mirroring disks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2001 10:48 AM
10-10-2001 10:48 AM
Re: mirroring disks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2001 10:48 AM
10-10-2001 10:48 AM
Re: mirroring disks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2001 10:49 AM
10-10-2001 10:49 AM
Re: mirroring disks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2001 10:52 AM
10-10-2001 10:52 AM
Re: mirroring disks
First, you will need to license (purchase) MirrorDisk/UX (product #B2491BA).
A very good guide to mirroring, in general, can be found in chapter-6 of "Managing Systems and Workgroups: A Guide for HP-UX System Administrators"
http://docs.hp.com/hpux/onlinedocs/B2355-90742/B2355-90742.html
The installation of the MirrorDisk/UX requires a reboot, so plan accordingly. The establishment of a mirrored logical volume can easily and safely be done "online". You should remember that *logical volumes*, not disks, are mirrored with MirrorDisk/UX.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2001 10:54 AM
10-10-2001 10:54 AM
Re: mirroring disks
You can mirror Logical Volumes , but not an entire volume group - unless you individually mirror each LV.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2001 11:01 AM
10-10-2001 11:01 AM
Re: mirroring disks
1.Get MirrorDisk/UX (B2491BA) product and install on system.
2. Extend vg00 over new disk.
3. Extend all lvols to new mirror disk.
Thanks.
Prashant.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2001 04:30 PM
10-10-2001 04:30 PM
Re: mirroring disks
To mirror you vg00 volume group you need
to puchase Product B2491BA which is called
MirrorDisk/UX if you don't already have it.
If you are new to your site you can test
to see if it is already installed:
# /usr/sbin/swlist -l bundle
If it returns something like the below it
is already installed. If not you must buy
it.
B2491BA B.11.00 MirrorDisk/UX
To do the actual mirroring is quite easy.
Below is a simple script to do the job.
# pvcreate -Bf /dev/rdsk/cXtXdX (the disk
you wish to use.
# 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
HTH
-Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2001 04:52 PM
10-10-2001 04:52 PM
Re: mirroring disks
-Santosh