- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- about Mirror disk boot for quarum command
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
10-04-2002 12:28 AM
10-04-2002 12:28 AM
i'm trying the boot disk which is the alternate.
if i remove the primary disk the system,
i think changing the alternate boot.
but the system could't start.
i checked the disk was configueris the mirror.(used lvdisplay,lifls and lvlnboot)
i heard the quarum command, but i can find this command.
the system configuration is in details as followings.
Boot Definitions for volume Group /dev/vg00,
and same hard disk drive insert the system.
Please Help!!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2002 12:33 AM
10-04-2002 12:33 AM
Re: about Mirror disk boot for quarum command
You should have done the following command on both of your bootable disks:
# mkboot -a "hpux -lq (;0)/stand/vmunix" /dev/rdsk/cXtXdX
This enable the quorum thing.
You need to have at least half of the disks available to boot your system !
By the way you could still do this and then remove the other disk.
C.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2002 12:38 AM
10-04-2002 12:38 AM
Re: about Mirror disk boot for quarum command
interrupt the boot sequence
answer Y to interact with IPL
then boot
hpux -lq
best of luck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2002 12:54 AM
10-04-2002 12:54 AM
Solutionfirst the disk must be init with pvcreate -B command to set a boot disk
create the boot area
#mkboot
# mkboot -a "hpux -lq"
(this in primary and in alternate)
mirror the lif area too
# for i in $(lifls /dev/rdsk/
>do
> >lifcp /dev/rdsk/
>done
you must set the mirror in the same order that primary disks (lvol1, then lvol2, then lvol3 .... until lvol8)
then run the lvlnboot -v command. It says if all it's correct
yopu must set the alternate path from here with the setboot command
good luck!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2002 01:00 AM
10-04-2002 01:00 AM
Re: about Mirror disk boot for quarum command
This may help:-
Mirroring the root disk with LVM
To mirror an existing root volume:
1. pvcreate -B /dev/rdsk/device (-B creates BDRA area)
2. vgextend /dev/vg00 /dev/dsk/device
3. mkboot /dev/rdsk/device (put boot utilities into boot area)
4. mkboot -a "hpux boot arguements here" /dev/rdsk/device
5. lvextend -m 1 /dev/vg00/lvol1 /dev/dsk/device
6. lvextend -m 1 /dev/vg00/swaplv /dev/dsk//device
7. repeat lvextend in sequence for all root logical volumes
8. lvlnboot -v ( to update the boot information with the new disk)
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2002 01:12 AM
10-04-2002 01:12 AM
Re: about Mirror disk boot for quarum command
thank you for your help!
i'll try again.
Roy