- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: how to make a mirror
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
06-10-2003 08:21 AM
06-10-2003 08:21 AM
how to make a mirror
/dev/vg02/lvol1 with 8 Gb. This 8 Gb are mirrored (8 in c0t0d0 and 8 in c1t0d0).
/dev/vg02/lvol2 with 8 Gb only in c0t0d0, not mirrored.
this is (lvol2) the one i want to mirror using the 8 Gb free on c1t0d0.
The answer is:
Is this sentence correct:
lvextend -m 1 /dev/vg02/lvol2 /dev/dsk/c1t0d0
if so, is this all that i have to do?, and can i do it while people is working on the system?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2003 08:33 AM
06-10-2003 08:33 AM
Re: how to make a mirror
2) You can do this online when peoples are working.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2003 08:34 AM
06-10-2003 08:34 AM
Re: how to make a mirror
Check this post:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xa9677d4cf554d611abdb0090277a778c,00.html
Regards,
DR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2003 08:39 AM
06-10-2003 08:39 AM
Re: how to make a mirror
/dev/dsk/c2t2d0 will be the disk we want to
create a mirror copy for the existing root disk
(/dev/dsk/c1t2d0) inside the same vg, vg00
if c2t2d0 already belongs to vg00, pls do a
vgreduce to free this disk first
1) vgreduce /dev/vg00 /dev/dsk/c2t2d0
2) pvcreate -B /dev/rdsk/c2t2d0
3) mkboot -l /dev/rdsk/c2t2d0
4) mkboot -a "hpux -lq (;0)/stand/vmunix" /dev/rdsk/c2t2d0
5) vgextend /dev/vg00 /dev/dsk/c2t2d0
6) lvextend -m 1 /dev/vg00/lvol1 /dev/dsk/c2t2d0
lvextend -m 1 /dev/vg00/lvol2 /dev/dsk/c2t2d0
lvextend -m 1 /dev/vg00/lvol3 /dev/dsk/c2t2d0
lvextend -m 1 /dev/vg00/lvol4 /dev/dsk/c2t2d0
lvextend -m 1 /dev/vg00/lvol5 /dev/dsk/c2t2d0
lvextend -m 1 /dev/vg00/lvol6 /dev/dsk/c2t2d0
lvextend -m 1 /dev/vg00/lvol7 /dev/dsk/c2t2d0
lvextend -m 1 /dev/vg00/lvol8 /dev/dsk/c2t2d0
7) pls check for if:
lvol1 on /stand (this is boot lv)
lvol3 on / (this is root lv)
lvol2 is swap lv
8) lvlnboot -r /dev/vg00/lvol3 (root on /)
9) lvlnboot -s /dev/vg00/lvol2 (swap)
lvlnboot -d /dev/vg00/lvol2 (dump) (optional)
10) lvlnboot -R /dev/vg00
11) lvlnboot -v (to confirm all correct)
12) vgcfgbackup /dev/vg00
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2003 08:47 AM
06-10-2003 08:47 AM
Re: how to make a mirror
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2003 08:58 AM
06-10-2003 08:58 AM
Re: how to make a mirror
Note that twang's response is only if you are creating a mirrored BOOT DISK, which you are not. As Shiju said, your statement will work fine. Yes you can do this while people are working on the system. It may slow them down a bit while the mirror is syncing, but hopefully not too bad.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2003 11:36 AM
06-10-2003 11:36 AM
Re: how to make a mirror
Just go to the post again, assign the points and press submit. Sometimes you have to do it a few times.
Regards,
DR