- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Mirroring (cant exec /stand/vmumix.)
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-09-2002 01:53 AM
12-09-2002 01:53 AM
I have a problem with mirroring. I pull out the worker disk and try to boot from the first mirror disk. When I try to boot from the mirrored disk I get a error cant exec /stand/vmumix.
I have K380 running HPUX 11 64 bit with 4 disks in VG00. 2 workers and to mirrors.
This is wath I did:
???pvcreate ???fB
???vgextend
???mkboot???
???mkboot ???a ???hpux ???lq???
???mkboot ???a ???hpux ???lq???
???for vol in `ls /dev/vg00/lvol*`
???do???
???lvextend ???m 1 $vol
???done???
???setboot ???p???
???setboot ???a???
???setboot ???s on??? to set the autosearch on
???setboot ???b on??? to set the autoboot sequence
Many thanks for you???re assistance with this!!!
Regards,
Michel
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2002 02:02 AM
12-09-2002 02:02 AM
Re: Mirroring (cant exec /stand/vmumix.)
Have you try boot in interactive mode ?
Does "HPUX ls" at the ISL prompt find vmunix file.
Have you test boot on previous kernel ?
Regrads,
Jerome
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2002 02:04 AM
12-09-2002 02:04 AM
Re: Mirroring (cant exec /stand/vmumix.)
cheers
Rajeev
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2002 02:08 AM
12-09-2002 02:08 AM
Re: Mirroring (cant exec /stand/vmumix.)
how can I update the lif?
there is noting in /usr/sbin/diag/
Regards,
Michel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2002 02:12 AM
12-09-2002 02:12 AM
SolutionProcedure to create a mirror disk :
# pvcreate -B /dev/rdsk/c0t5d0
Add the physical volume to the existing root volume group with vgextend:
# vgextend /dev/vg00 /dev/dsk/c0t5d0
Use mkboot to place boot utilities in the boot area:
# mkboot -l /dev/rdsk/c0t5d0
Use mkboot to add an AUTO file in boot LIF area:
# mkboot -a "hpux" /dev/rdsk/c0t5d0
Or, use the -lq option to allow the system to boot in the event that one of the disks is
unavailable, resulting in a loss of quorum.
# mkboot -a "hpux -lq" /dev/rdsk/c0t5d0
NOTE: Use the -lq option when the root volume group contains only 2 disks. If more than
2 disks are in the root volume group, the -lq option is not needed as quorum will be
maintained even if 1 disk fails.
Check the contents of the AUTO file with
# lifcp /dev/rdsk/c0t5d0:AUTO -
Alternatively, one could set the alternate boot path variable according to e.g.
# setboot -a 8/0/19/0.5.0
The hardware address of the disk that will become the mirror disk can be determined with
'ioscan -fnC' disk. To check use setboot without any arguments.
Use pvdisplay -v to the order of the logical volumes on the primary disk.
# pvdisplay -v /dev/dsk/c0t6d0
NOTE: In the following, the standard sequence lvol1, lvol2, lvol3, and so forth, is
assumed.
Mirror the boot logical volume, primary swap logical volume, root logical volume and other
logical volumes as needed, to the mirror disk in the correct sequence
# lvextend -m 1 /dev/vg00/lvol1 /dev/dsk/c0t5d0
# lvextend -m 1 /dev/vg00/lvol2 /dev/dsk/c0t5d0
# lvextend -m 1 /dev/vg00/lvol3 /dev/dsk/c0t5d0
# lvextend -m 1 (additional LV)
Use pvdisplay -v to the order of the logical volumes on the mirror disk to insure they
are in the correct order.
# pvdisplay -v /dev/dsk/c0t5d0
Update all physical volumes in the volume group so that the logical volume become the root,
boot, primary swap, or a dump volume when the system is next booted:
For HP-UX 10.20 (not updated to) and 11.X only:
# lvlnboot -r /dev/vg00/lvol3 /dev/vg00
# lvlnboot -b /dev/vg00/lvol1 /dev/vg00
# lvlnboot -s /dev/vg00/lvol2 /dev/vg00
# lvlnboot -d /dev/vg00/lvol2 /dev/vg00
For HP-UX 10.01, 10.10, and updates to 10.20 only:
# lvlnboot -r /dev/vg00/lvol1 /dev/vg00
# lvlnboot -s /dev/vg00/lvol2 /dev/vg00
# lvlnboot -d /dev/vg00/lvol2 /dev/vg00
Check with
# lvlnboot -v
Both disks must be listed for root, boot and swap definitions.
In order to test the mirror configuration, shut down the system and boot from the mirror disk.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2002 02:21 AM
12-09-2002 02:21 AM
Re: Mirroring (cant exec /stand/vmumix.)
The first lvol on a disk must be /stand. The second must be swap. Otherwise the system does not boot. (The lvm start somewhere in a runlevel)
You use a for loop to make the mirrors. The first in the mirror is probably not /stand (lvol1), since the ls command does not give you the sorted order.
Good luck
Donald
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2002 05:59 PM
12-09-2002 05:59 PM
Re: Mirroring (cant exec /stand/vmumix.)
You have to load OnlineDiag - Support Tools Bundle to
get the /usr/sbin/diag dir
and updatelif utilities.
If you are running a 64bit Server, then you have
to use updatediaglif2. This
loads the diagnostic tools
to ISL.
Srini
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2002 06:56 AM
12-11-2002 06:56 AM
Re: Mirroring (cant exec /stand/vmumix.)
It looks like this is a frimware problem
Thanks