- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: bootable mirror disk
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
12-29-2004 06:37 PM
12-29-2004 06:37 PM
After both disks have the same data, how can we make the second disk a bootable one ?
we did not use mkboot command.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-29-2004 06:58 PM
12-29-2004 06:58 PM
Re: bootable mirror disk
Hi,
mkboot command while mirroring is required to put the bootable files in boot sector of the disk.
anyway try using setboot
#setboot -p
reboot
device can be get using ioscan -fnC disk it will in the form 0/0/........
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-29-2004 07:23 PM
12-29-2004 07:23 PM
Re: bootable mirror disk
# mkboot /dev/rdsk/c2t2d0
There appear to be non-boot logical volumes on this device.
Overwriting them could destroy all the data on this device
# would the logical volumes be overwritten [y/n]? #
# mkboot -a "hpux -lq (;0)/stand/vmunix" /dev/rdsk/c2t2d0
There appear to be non-boot logical volumes on this device.
Overwriting them could destroy all the data on this device
# would the logical volumes be overwritten [y/n]? #
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-29-2004 07:33 PM
12-29-2004 07:33 PM
SolutionIt may erase your data on the disk so be carefull..
Normally "mkboot" commands are made before mirroring your system so I don't know what it will do if you make it after.
If answering yes cause the destruction of your mirror you just have to mirror again your logical volume...
Stf ;-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-29-2004 07:47 PM
12-29-2004 07:47 PM
Re: bootable mirror disk
mkboot before mirroring the boot disk is necessary to make that disk also bootable.
Now in your case, break the mirror, run the mediainit ( to format the disk, i don't it is necessary) and recreate the mirror. (use mkboot this time)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-29-2004 08:04 PM
12-29-2004 08:04 PM
Re: bootable mirror disk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2005 05:28 PM
01-04-2005 05:28 PM
Re: bootable mirror disk
How can i be sure that data is written on both mirrored disks ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2005 05:59 PM
01-16-2005 05:59 PM
Re: bootable mirror disk
You can check how data is written or not by command #lvsync mirrored_lv , if it synchronise, it mean that your data is mirroring between 2 disks.
Or you can check 2 your physical disks appear by command lvdisplay -v mirrored_lv_name.
HMT
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2005 08:34 PM
01-16-2005 08:34 PM
Re: bootable mirror disk
Hope while running the pvcreate , u have used -B option
This option is must to while making bootable disk. If not used the options, there will not be BDRA area in disk.
Rgds
Suraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2005 06:01 PM
01-17-2005 06:01 PM
Re: bootable mirror disk
The command #lvsync mirrored_lv , return :
Resynchronized logical volume "mirrored_lv_name".
Suraj,
i used this command to create pv
pvcreate -f /dev/rdsk/c2t2d0
option -B not used.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2005 10:17 PM
01-17-2005 10:17 PM
Re: bootable mirror disk
Please follow the steps while crearing the mirror root disk.
Create PV with -B option
#pvcreate -B (disk)
And then vgextend to vg00
#vgextend /dev/vg00 (disk)
then mkboot
#mkboot (disk)
#mkboot -a "hpux -lq (;0)/stand/vmunix" /dev/rdsk/c2t2d0
Then u do lvextend for each LV is in vg00 required for you.
#lvextend -m 1 /dev/vg00/lvol1 (disk)
Finally use #lvlnboot to update the vg00 group.
if the above step not followed, the system will not boot from the mirrored disk, even though it is mirrored.
Cheers