- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Steps to setup a root mirror on hpux11iv3 on RX464...
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
02-15-2013 06:44 AM
02-15-2013 06:44 AM
I am looking for step by step to create a mirror to root drive.
I have 2 x 146GB internal drive. the entire vg00 is create on /dev/disk/disk4_p2, and I need to create a mirro of the root on /dev/rdisk/disk3_p2.
Could sombody please provide detail steps on how to do that? This is a hpux11iv3 server.
Thanks!
Solved! Go to Solution.
- Tags:
- mirroring
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2013 06:54 AM
02-15-2013 06:54 AM
SolutionHi Hanry,
down load the manual "When Good Disks Go Bad"
This has all the informtaion in it and is an awesome reference guide.
There also is a document out there called "How to mirror a boot disk" but I cant find the link for it at this time. I will keep looking.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2013 04:06 AM
02-23-2013 04:06 AM
Re: Steps to setup a root mirror on hpux11iv3 on RX4640
If you want to mirror the root disk, you can follow the below procedure.
create the partition description file
#vi /tmp/ptf
3
EFI 500MB
HPUX 100%
HPSP 400MB
partition the disk using, #idisk -f /tmp/ptf -w <ur new disk>
once partition is created you can create the device files for the same.
insf -e -H <hw path of the disk>
create the PV as a bootable one using the following:
pvcreate -B rawdiskname
vgextend /dev/vg00 /diskname-block
using the mkboot command to copy the utilities,
mkboot –e –l <raw whole disk>
update the autofile
echo “boot vmunix” > ./AUTO
efi_cp -d /dev/rdsk/c2t1d0s1 ./AUTO /efi/hpux/auto ---> copy from ./AUTO to new EFI partition
lvextend all the vg00 lv's to the new disks
lvextend -m 1 /dev/vg00/lvol1 /dev/disk/diskname
update the boot data, root volume group
lvlnboot -R /dev/vg00
verify with,
lvlnboot –v
set the new disk as alternate boot path
setboot –a <hw path for ex 0/1/1/0.1.0>
add the new disk to the /stand/bootconf file for SDUX updates
vi /stand/bootconf
1 /dev/disk/diskname
I hope this works well.
Regards,
KM