- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- step-by-step procedure to mirror using SAM
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
01-13-2002 02:46 AM
01-13-2002 02:46 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2002 05:53 AM
01-13-2002 05:53 AM
Re: step-by-step procedure to mirror using SAM
i have to say that i dont how to do it with sam but with command line yes .
i saw that you are new with hp-ux and my advise is to get use to used the command line that is much better then the SAM .
here is for creating a mirror logical volume .
1. first you need to have 2 disk in the voulme greoup that you made .
In the following example a logical volume is created with standard name. Let us assume that the new logical volume is /dev/vg05/lvol4. This logical volume is extended on physical volume /dev/dsk/cAtAdA and mirrored to another physical volume /dev/dsk/cBtBdB.
# lvcreate vg05
# lvextend -1 /dev/vg05/lvol4 /dev/dsk/cAtAdA
# lvextend -m 1 /dev/vg05/lvol4 /dev/dsk/cBtBdB
# lvextend -L new_size_MB /dev/vg05/lvol4
if you use the command lvcreate with the option -l you will not have to use the lvextend in line 2 but this is the exam. that you ask ( i hope )
if you want to mirror your system disk i can also give you the guide line how to do it .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2002 05:59 AM
01-13-2002 05:59 AM
Re: step-by-step procedure to mirror using SAM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2002 06:16 AM
01-13-2002 06:16 AM
SolutionTo mirror your boot disk, do the following:
# pvcreate -B /dev/rdsk/cXtYdZ
# vgextend /dev/vg00 /dev/dsk/cXtYdZ
# mkboot /dev/rdsk/cXtYdZ
# mkboot -a "hpux -lq /stand/vmunix" /dev/rdsk/cXtYdZ
# for N in 1 2 3 4 5 6 7 8
> do
> lvextend -m 1 /dev/vg00/lvol{N} /dev/dsk/cXtYdZ
done
NOTE: that the logical volumes are mirrored IN ORDER (at least lvol1, lvol2 and lvol3 (/stand, primary swap & "/", respectively)).
NOTE: the low-quorum (lq) in the 'mkboot' command.
To verify all is well, check with:
# lvlnboot -v
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2002 04:26 AM
01-14-2002 04:26 AM
Re: step-by-step procedure to mirror using SAM
SAM->disk&FileSystems->Logical volumes->Select logicalvolume->actions->change no of mirror copies
Prequisite are:-
The dsk u want to mirror should be made physical volume using pvcreate
than add that Physical volume into the Volumegroup of the primary VG i.e vg00
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2002 05:20 AM
01-14-2002 05:20 AM
Re: step-by-step procedure to mirror using SAM
TO create mirrors, using sam, you must first add the available disk to the VG, which you can do in sam:
sam->
disks and file systems->
Volume Groups->
"from menu bar"-->Actions->
extend->
Select Volume Group->(choose VG)
Select Disks->(choose an available disk)
live free or die
harry