- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- LIFS are not the same on mirrored disks
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
03-03-2005 01:27 AM
03-03-2005 01:27 AM
I have two disks mirrored in vg00, but for some reason LIFS area is no same on them.
What can be a reson for it and how should I fix it?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2005 01:30 AM
03-03-2005 01:30 AM
Re: LIFS are not the same on mirrored disks
Keith
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2005 01:34 AM
03-03-2005 01:34 AM
Re: LIFS are not the same on mirrored disks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2005 01:37 AM
03-03-2005 01:37 AM
Re: LIFS are not the same on mirrored disks
pvcreate -B {dev}
mkboot -l {dev}
????
This must be done for root disk mirrors.
Keith
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2005 01:40 AM
03-03-2005 01:40 AM
Re: LIFS are not the same on mirrored disks
So, to fix it I must use mkboot?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2005 01:42 AM
03-03-2005 01:42 AM
Re: LIFS are not the same on mirrored disks
mkboot -b /usr/sbin/diag/lif/updatediaglif -p ISL -p HPUX -p AUTO -p LABEL -p PAD
/dev/rdsk/cxtxdx
Use updatediaglif2 if it is 64 bit kernel.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2005 01:44 AM
03-03-2005 01:44 AM
Re: LIFS are not the same on mirrored disks
(c1t0d0 is used as an example)
pvcreate -B /dev/rdsk/c1t0d0
mkboot -l /dev/dsk/c1t0d0
vgextend /dev/vg00 /dev/dsk/c1t0d0
then re-mirror the LVs in the same order as the original disk.
Keith
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2005 01:44 AM
03-03-2005 01:44 AM
Re: LIFS are not the same on mirrored disks
what's the output of lvlnboot -v ?
when one of your vg00 disk isn't a Boot Disk, you won't be able to boot from it.
the solution is to totally remove the disk from vg00 and create it again with the -B option.
good luck.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2005 01:52 AM
03-03-2005 01:52 AM
Re: LIFS are not the same on mirrored disks
Boot Definitions for Volume Group /dev/vg00:
Physical Volumes belonging in Root Volume Group:
/dev/dsk/c2t6d0 (1/0/0/3/0.6.0) -- Boot Disk
/dev/dsk/c4t6d0 (1/0/4/0/0/4/0.6.0) -- Boot Disk
Boot: lvol1 on: /dev/dsk/c2t6d0
/dev/dsk/c4t6d0
Root: lvol4 on: /dev/dsk/c2t6d0
/dev/dsk/c4t6d0
Swap: lvol3 on: /dev/dsk/c2t6d0
/dev/dsk/c4t6d0
Dump: lvol2 on: /dev/dsk/c2t6d0, 0
lifls /dev/dsk/c4t6d0
ISL AUTO HPUX PAD LABEL
lifls /dev/dsk/c2t6d0
ODE MAPFILE SYSLIB CONFIGDATA SLMOD2
SLDEV2 SLDRV2 SLSCSI2 MAPPER2 IOTEST2
PERFVER2 PVCU SSINFO ISL AUTO
HPUX LABEL
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2005 01:57 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2005 01:58 AM
03-03-2005 01:58 AM
Re: LIFS are not the same on mirrored disks
You must have misssed following. ODE tools were not copied.
mkboot -b /usr/sbin/diag/lif/updatediaglif -p ISL -p HPUX -p AUTO -p LABEL -p PAD
/dev/rdsk/cxtxdx
Use updatediaglif2 if it is 64 bit kernel.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2005 02:00 AM
03-03-2005 02:00 AM
Re: LIFS are not the same on mirrored disks
Thanx a lot to all!