1834187 Members
2526 Online
110064 Solutions
New Discussion

hpux parameter

 
SOLVED
Go to solution
Ionut Grigorescu_2
Super Advisor

hpux parameter

Hi,

I have checked an AUTO file on the boot disk (copy with lifcp to /tmp/AUTO then more /tmp/AUTO) and I have found:
hpux lq
I couldn't find in the manpage what is lq - can you explain it to me?
If it weren't for STRESS I'd have no energy at all
5 REPLIES 5
A. Clay Stephenson
Acclaimed Contributor
Solution

Re: hpux parameter

hpux -lq ....

instructs the OS to ignore disk quorum for vg00 when activating the volume group. Normally, more than 50% of the disks which comprise a volume group must be available before a volume group can be activated. Typically in mirrored boot disk configurations, vg00 consists of two disk. If one of these is dead then only 50% of the disks are available; -lq says ignore this and continue. It should be set on both boot disks in a mirrored boot configuration. It is set using the mkboot -a command.
If it ain't broke, I can fix that.
Hai Nguyen_1
Honored Contributor

Re: hpux parameter

lq stands for Low Quorum which allows you to boot off a mirrored boot disk independently when the primary boot disk fails to boot.

Hai
S.K. Chan
Honored Contributor

Re: hpux parameter

Having "hpux -lq" as your boot strings allow you to bootup your system without quorum check. A quorum check will fail if half or more out of the total number of disks in a volume group fails. So for example if you got 2 disks in your root VG (mirrored), if one disk failed, your system will not be able to boot up "automatically" if you do not have the escape quorum boot string (hpux -lq).
Ken Hubnik_2
Honored Contributor

Re: hpux parameter

If you are mirroring the root disk than it is a good practice to have -lq option in there. It is for low quorom and will allow a boot on the secondary root mirror in case primary fails.
S.K. Chan
Honored Contributor

Re: hpux parameter

As for the manpage ..
# man vgchange
Take a look at "-q quorum" section. It tells you you can change the activation behavior of your VG. The quorum requirement is enforced by default.