- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: vg00 and and mkboot
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
04-22-2009 08:37 AM
04-22-2009 08:37 AM
I have a server with 2 disks and 2 mirrors as part of my vg00.
The first disk has the normal lvol1 to lvol10 filesystems and the second disk has additional lvol for applications as part of vg00.
now based on the output below does the second disk with its mirror need to be bootable or not necesary. If not will that prevent the server from boot in case of any failure.
#-> lvlnboot -v
Boot Definitions for Volume Group /dev/vg00:
Physical Volumes belonging in Root Volume Group:
/dev/dsk/c0t0d0 (0/0/1/1/0.0.0) -- Boot Disk
/dev/dsk/c2t0d0 (2/0/1/1/0.0.0) -- Boot Disk
/dev/dsk/c0t2d0 (0/0/1/1/0.2.0) Does it need to be bootable?
/dev/dsk/c2t2d0 (2/0/1/1/0.2.0) -- Boot Disk is it needed as bootbale?
Boot: lvol1 on: /dev/dsk/c0t0d0
/dev/dsk/c2t0d0
Root: lvol3 on: /dev/dsk/c0t0d0
/dev/dsk/c2t0d0
Swap: lvol2 on: /dev/dsk/c0t0d0
/dev/dsk/c2t0d0
Dump: lvol2 on: /dev/dsk/c0t0d0, 0
The disk c0t2d0 and it's mirror c2t2do have the following filesystems
--- Distribution of physical volume ---
LV Name LE of LV PE for LV
/dev/vg00/u01 1606 1606
/dev/vg00/adm 128 128
I think does not need to be bootable as lvol1,lvol2 and lvol3 resides on the other disk, but I might be wrong thats why I wanted your input on this.
All suggestions are appreciated.
Thank you
Juan
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2009 08:41 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2009 08:42 AM
04-22-2009 08:42 AM
Re: vg00 and and mkboot
Only the disks that have lvol1 to 3 on it must be bootable.
The system will do the following:
- firmware boots the first configured disk and load the system loader from it
- the system loader will get the first 3 LVOLs and is going to load the kernel
until now it doesn't matter if you have more than 1 disk in you VG, all others come into play later.
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2009 08:50 AM
04-22-2009 08:50 AM
Re: vg00 and and mkboot
FIrst, placing non-standard vg00 logical volumes on your boot (vg00) disk makes operating system upgrades, and cloning of vg00 by whatever means, more difficult. In my opinion, rid your vg00 of application logical volumes. Disk is (relatively cheap!
That said, for a mirror disk to be bootable, the first three (lvol1, lvol2 and lvol3) logical volumes _must_ be mirrored in that order. The physical volume that constitutes the boot disk must have been created with the '-B' option of 'pvcreate' and a 'mkboot' performed thereon. The details can be found here (in Appendix-D):
http://docs.hp.com/en/5991-1236/When_Good_Disks_Go_Bad_WP.pdf
You should also set the "low quorum" for _BOTH_ disks:
# mkboot -a "hpux -lq" /dev/rdsk/cXtYdZ
Now, having said this, you want high-availablity in the event of a disk failure. Thus you want to mirror *every* logical volume on your boot disk. Afterall, you want a fully functional system (or at least the data thereof) anytime you have a failure. Booting following a disk hardware failure is just one aspect.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2009 09:03 AM
04-22-2009 09:03 AM
Re: vg00 and and mkboot
Disks c0t0d0 and c2t0d0 are the only required boots disk, with c2t0d0 being the mirror of c0t0d0.
I would also check the output of the "setboot" command to ensure that your primary and alternate boot paths are configured to point to their respective boot disk.
man setboot for further information if required.
The only other thing that I would also point out is that vg00 is normally specifically for operating system file systems and that application specific file systems are usually configured within separate vg's like vg01, vg02 etc......., but this can differ from site to site depending upon in house standards.
Regards,
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2009 09:30 AM
04-22-2009 09:30 AM
Re: vg00 and and mkboot
As per the comment on app lvols on vg00 I agree, however it was build before my time and on this complex envirnment I rather not make changes unless it is necesary.
thank you again
Juan