- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to mirror root and data vg in hpux
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-12-2009 04:40 AM
09-12-2009 04:40 AM
How to mirror root and data vg in hpux
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2009 05:10 AM
09-12-2009 05:10 AM
Re: How to mirror root and data vg in hpux
MirrorDisk/UX is a software product that you must license either individually or by virtue of the fact that you licensed an Operating Environment that includes it.
MirrorDisk/UX mirrors at the _logical_volume_ level.
You don't identify your hardware -- PA-RISC or Itanium so the procedures for mirroring vg00 will differ very slightly. See:
http://www.docs.hp.com/en/5991-1236/When_Good_Disks_Go_Bad_WP.pdf
Too, if you have a SmartArray raid controller on Itanium hardware, your system may have been configured to use hardware Raid for vg00, obviating the need for MirrorDisk/UX software for that volume group in the first place.
This is also an important document should you have any mirrored disk fail.
As for non-vg00 logical volumes, you should read the sections dealing with mirroring in:
http://www.docs.hp.com/en/5992-6576/index.html
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2009 05:55 AM
09-12-2009 05:55 AM
Re: How to mirror root and data vg in hpux
My requirment need to do the mirror in rootvg
can you give me the exact example command for this
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2009 06:08 AM
09-12-2009 06:08 AM
Re: How to mirror root and data vg in hpux
See the link provided by JRF..
read page 48 through 52
http://www.docs.hp.com/en/5991-1236/When_Good_Disks_Go_Bad_WP.pdf
Rgds!
Johnson
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2009 06:11 AM
09-12-2009 06:11 AM
Re: How to mirror root and data vg in hpux
First you need to check at your server that this software should be there to mirror disk.
MirrorDisk/UX
how to search
#swlist -l fileset | grep -i mirror
Second is check your server model PA-RISC or Itanium depending upon the model you need select the steps.
open the below link
http://www.docs.hp.com/en/5991-1236/When_Good_Disks_Go_Bad_WP.pdf
Page 48 for Mirroring the Root Volume on PA-RISC Servers
Page 60 for Mirroring the Root Volume on Integrity Servers
Suraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2009 06:03 PM
09-12-2009 06:03 PM
Re: How to mirror root and data vg in hpux
You ask specifically about 'rootvg'. In HP-UX its vg00.
In HP-UX you have to use LVM to manager vg00. This is because the /stand filesystem has to be 'hfs' type.
Although vxvm is used on hp-ux, its only used for data volume groups. This is because vxvm has no 'hfs' file system type. Only the 'vxfs' type.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2009 07:00 PM
09-12-2009 07:00 PM
Re: How to mirror root and data vg in hpux
Since you are talking about rootdg and not
vg00, it makes me believe you are licensed
to use VxVM instead of native LVM.
Mirroring in VxVM is as simple as (I assume
you are not running HP-UX 11.31 with
native multipathing, hence the examples use
legacy device special files):
a) To initialise disk under VxVM:
# vxdisksetup -iB cxtydz
b) To add the disk to the VxVM dg:
# vxdg -g rootdg adddisk rootdisk=cxtydz
c) To create the mirror:
# vxrootmir -v -b -R cxtydz
For non-root data groups, one of the ways
to set the mirroring is:
# vxassist -g mydg mirror VOLX mirror=enclr ...
But, before going further, are you really
using VxVM or LVM?
Cheers,
VK2COT