- 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
05-17-2007 03:29 AM
05-17-2007 03:29 AM
Mirroring
i am new to hpux but i have an idea about all thos basics but urgently i need steps to create a disk mirroring and it is not a boot disk,
Ecpecting your results soon,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2007 03:35 AM
05-17-2007 03:35 AM
Re: Mirroring
I assume you have mirrordisk installed:-
swlist | grep -i mirrordisk
lvextend is the command to use to create mirrors:-
lvcreate -m
usually you would put the mirror on a different controller to improve redundancy further.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2007 03:37 AM
05-17-2007 03:37 AM
Re: Mirroring
lvextend -m
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2007 03:38 AM
05-17-2007 03:38 AM
Re: Mirroring
Correction to earlier command.
lvextend -m 1
That is all that need to be done if the logical volume already exists.
Note that LVM Mirror/UX is an optional product that must be paid for.
Aside: Hi Stuffs, what does that mean?
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2007 03:39 AM
05-17-2007 03:39 AM
Re: Mirroring
I assume you wish to set up software mirroring, in which case, your first step is to purchase Mirrordisk/UX, which adds functionality to LVM commands.
Then, for command specifics, see â Adding a Mirror to a Logical Volumeâ from the HP-UX SysAdmin Guide:
http://docs.hp.com/en/5991-6481/ch03s03.html#lvm.admin.addmirror
Basically, you add an '-m 1' option to 'lvcreate' or 'lvextend' after configuring the new physical volume.
PCS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2007 06:30 AM
05-17-2007 06:30 AM
Re: Mirroring
Example:
To mirror a Logical Volume lvol1 in Volume group VG01 to the Physical Disk c10t4d0. Before executing pvcreate make sure that the disk is not used in any other volume groups.
# pvcreate /dev/rdsk/c10t4d0
# vgextend /dev/vg01 /dev/dsk/c10t4d0
# lvextend -m1 /dev/vg01/lvol1 /dev/dsk/c10t4d0
Babu