<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: automatic boot form alternate bootdisk in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/automatic-boot-form-alternate-bootdisk/m-p/2598855#M648043</link>
    <description>Hi Koni,&lt;BR /&gt;&lt;BR /&gt;You need to add a step to your boot disk mirroring procedure.  Here's the one I use:&lt;BR /&gt;&lt;BR /&gt;For this example, the original boot disk is /dev/dsk/c0t6d0 (8/4.6.0), and the&lt;BR /&gt;new mirror disk is /dev/dsk/c0t5d0 (8/4.5.0).&lt;BR /&gt;&lt;BR /&gt;     # Prepare bootable disk.&lt;BR /&gt;     pvcreate -B -f /dev/&lt;B&gt;r&lt;/B&gt;dsk/c0t5d0&lt;BR /&gt;&lt;BR /&gt;     # Add the new disk to /dev/vg00.&lt;BR /&gt;     vgextend /dev/vg00 /dev/dsk/c0t5d0&lt;BR /&gt;&lt;BR /&gt;     # Write boot (LIF) info to the disk.&lt;BR /&gt;     mkboot /dev/&lt;B&gt;r&lt;/B&gt;dsk/c0t5d0&lt;BR /&gt;&lt;BR /&gt;     # Update AUTO file on both disks so vg00 will activate without a quorum.&lt;BR /&gt;     mkboot -a "hpux -lq" /dev/&lt;B&gt;r&lt;/B&gt;dsk/c0t5d0&lt;BR /&gt;     mkboot -a "hpux -lq" /dev/&lt;B&gt;r&lt;/B&gt;dsk/c0t6d0&lt;BR /&gt;&lt;BR /&gt;     # Mirror each lvol in vg00.&lt;BR /&gt;     # The order of the first three is very important!&lt;BR /&gt;     lvextend -m 1 /dev/vg00/lvol1 /dev/dsk/c0t5d0&lt;BR /&gt;     lvextend -m 1 /dev/vg00/lvol2 /dev/dsk/c0t5d0&lt;BR /&gt;     lvextend -m 1 /dev/vg00/lvol3 /dev/dsk/c0t5d0&lt;BR /&gt;     lvextend -m 1 /dev/vg00/lvol4 /dev/dsk/c0t5d0&lt;BR /&gt;                                 .&lt;BR /&gt;                                 .&lt;BR /&gt;                                 .&lt;BR /&gt;     lvextend -m 1 /dev/vg00/lvolx /dev/dsk/c0t5d0&lt;BR /&gt;&lt;BR /&gt;     # Recover BDRA&lt;BR /&gt;     lvlnboot -R&lt;BR /&gt;&lt;BR /&gt;     # Set BOOT, SWAP, and ROOT.&lt;BR /&gt;     lvlnboot -b /dev/vg00/lvol1&lt;BR /&gt;     lvlnboot -s /dev/vg00/lvol2&lt;BR /&gt;     lvlnboot -r /dev/vg00/lvol3&lt;BR /&gt;&lt;BR /&gt;     # Check stable storage.&lt;BR /&gt;     setboot&lt;BR /&gt;&lt;BR /&gt;     # If boot paths and switches are not set properly,&lt;BR /&gt;     # perform the following as needed.&lt;BR /&gt;     setboot -p 8/4.6.0                      # Primary boot path&lt;BR /&gt;     setboot -a 8/4.5.0                      # Alternate boot path&lt;BR /&gt;     setboot -s on -b on                     # Activate autosearch and autoboot&lt;BR /&gt;&lt;BR /&gt;During a "normal" reboot, the primary boot disk will be used.  If the system&lt;BR /&gt;boots and the primary boot disk has failed, the system will automatically boot&lt;BR /&gt;off of the alternate boot disk.&lt;BR /&gt;&lt;BR /&gt;All the best,&lt;BR /&gt;Jim</description>
    <pubDate>Mon, 22 Oct 2001 14:34:20 GMT</pubDate>
    <dc:creator>Jim Turner</dc:creator>
    <dc:date>2001-10-22T14:34:20Z</dc:date>
    <item>
      <title>automatic boot form alternate bootdisk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/automatic-boot-form-alternate-bootdisk/m-p/2598854#M648042</link>
      <description>Hello&lt;BR /&gt;&lt;BR /&gt;I have a mirrored disksystem. It is possible to boot from the alternate bootdisk, if the primary bootdisk crashed, without handling it manual?&lt;BR /&gt;&lt;BR /&gt;It works fine with 'bo alt', but this is interrupt the bootsequenz. I will start this without manual interrupting.&lt;BR /&gt;&lt;BR /&gt;Thank you   Koni</description>
      <pubDate>Mon, 22 Oct 2001 14:22:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/automatic-boot-form-alternate-bootdisk/m-p/2598854#M648042</guid>
      <dc:creator>Konrad Hegner</dc:creator>
      <dc:date>2001-10-22T14:22:52Z</dc:date>
    </item>
    <item>
      <title>Re: automatic boot form alternate bootdisk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/automatic-boot-form-alternate-bootdisk/m-p/2598855#M648043</link>
      <description>Hi Koni,&lt;BR /&gt;&lt;BR /&gt;You need to add a step to your boot disk mirroring procedure.  Here's the one I use:&lt;BR /&gt;&lt;BR /&gt;For this example, the original boot disk is /dev/dsk/c0t6d0 (8/4.6.0), and the&lt;BR /&gt;new mirror disk is /dev/dsk/c0t5d0 (8/4.5.0).&lt;BR /&gt;&lt;BR /&gt;     # Prepare bootable disk.&lt;BR /&gt;     pvcreate -B -f /dev/&lt;B&gt;r&lt;/B&gt;dsk/c0t5d0&lt;BR /&gt;&lt;BR /&gt;     # Add the new disk to /dev/vg00.&lt;BR /&gt;     vgextend /dev/vg00 /dev/dsk/c0t5d0&lt;BR /&gt;&lt;BR /&gt;     # Write boot (LIF) info to the disk.&lt;BR /&gt;     mkboot /dev/&lt;B&gt;r&lt;/B&gt;dsk/c0t5d0&lt;BR /&gt;&lt;BR /&gt;     # Update AUTO file on both disks so vg00 will activate without a quorum.&lt;BR /&gt;     mkboot -a "hpux -lq" /dev/&lt;B&gt;r&lt;/B&gt;dsk/c0t5d0&lt;BR /&gt;     mkboot -a "hpux -lq" /dev/&lt;B&gt;r&lt;/B&gt;dsk/c0t6d0&lt;BR /&gt;&lt;BR /&gt;     # Mirror each lvol in vg00.&lt;BR /&gt;     # The order of the first three is very important!&lt;BR /&gt;     lvextend -m 1 /dev/vg00/lvol1 /dev/dsk/c0t5d0&lt;BR /&gt;     lvextend -m 1 /dev/vg00/lvol2 /dev/dsk/c0t5d0&lt;BR /&gt;     lvextend -m 1 /dev/vg00/lvol3 /dev/dsk/c0t5d0&lt;BR /&gt;     lvextend -m 1 /dev/vg00/lvol4 /dev/dsk/c0t5d0&lt;BR /&gt;                                 .&lt;BR /&gt;                                 .&lt;BR /&gt;                                 .&lt;BR /&gt;     lvextend -m 1 /dev/vg00/lvolx /dev/dsk/c0t5d0&lt;BR /&gt;&lt;BR /&gt;     # Recover BDRA&lt;BR /&gt;     lvlnboot -R&lt;BR /&gt;&lt;BR /&gt;     # Set BOOT, SWAP, and ROOT.&lt;BR /&gt;     lvlnboot -b /dev/vg00/lvol1&lt;BR /&gt;     lvlnboot -s /dev/vg00/lvol2&lt;BR /&gt;     lvlnboot -r /dev/vg00/lvol3&lt;BR /&gt;&lt;BR /&gt;     # Check stable storage.&lt;BR /&gt;     setboot&lt;BR /&gt;&lt;BR /&gt;     # If boot paths and switches are not set properly,&lt;BR /&gt;     # perform the following as needed.&lt;BR /&gt;     setboot -p 8/4.6.0                      # Primary boot path&lt;BR /&gt;     setboot -a 8/4.5.0                      # Alternate boot path&lt;BR /&gt;     setboot -s on -b on                     # Activate autosearch and autoboot&lt;BR /&gt;&lt;BR /&gt;During a "normal" reboot, the primary boot disk will be used.  If the system&lt;BR /&gt;boots and the primary boot disk has failed, the system will automatically boot&lt;BR /&gt;off of the alternate boot disk.&lt;BR /&gt;&lt;BR /&gt;All the best,&lt;BR /&gt;Jim</description>
      <pubDate>Mon, 22 Oct 2001 14:34:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/automatic-boot-form-alternate-bootdisk/m-p/2598855#M648043</guid>
      <dc:creator>Jim Turner</dc:creator>
      <dc:date>2001-10-22T14:34:20Z</dc:date>
    </item>
    <item>
      <title>Re: automatic boot form alternate bootdisk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/automatic-boot-form-alternate-bootdisk/m-p/2598856#M648044</link>
      <description>Konrad,&lt;BR /&gt;&lt;BR /&gt;No. If the primary disk fails, nothing will happen and the system will continue to run with the mirror disk. &lt;BR /&gt;&lt;BR /&gt;You can't boot automatically from the desired disk during the system crash. But I would suggest you to set the boot path to alternate so that when the system boot next time, it will boot from the alternate disk to ensure proper functionality of mirroring. I would do this through startup script. It switches the alternate path from current by setboot command during the startup.&lt;BR /&gt;&lt;BR /&gt;However, there is  a danger again doing this way. If you setboot to alternate and if alternate fails and the system reboots, it won't boot.&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Mon, 22 Oct 2001 14:37:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/automatic-boot-form-alternate-bootdisk/m-p/2598856#M648044</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2001-10-22T14:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: automatic boot form alternate bootdisk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/automatic-boot-form-alternate-bootdisk/m-p/2598857#M648045</link>
      <description>PS - Please forgive my unclean cut-n-paste.  If the forum posting mechanism wasn't totally brain-dead, it would have known what to do with &lt;B&gt; and &lt;/B&gt; which would have made the "r" in "rdsk" bold-face.</description>
      <pubDate>Mon, 22 Oct 2001 14:38:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/automatic-boot-form-alternate-bootdisk/m-p/2598857#M648045</guid>
      <dc:creator>Jim Turner</dc:creator>
      <dc:date>2001-10-22T14:38:05Z</dc:date>
    </item>
    <item>
      <title>Re: automatic boot form alternate bootdisk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/automatic-boot-form-alternate-bootdisk/m-p/2598858#M648046</link>
      <description>Hmmmmm......I didn't think that the system would boot from the alternate automatically.&lt;BR /&gt;&lt;BR /&gt;Check out TKB document KBAN00000231 "Series 800 boot menus and procedures"&lt;BR /&gt;&lt;BR /&gt;Here is an excerpt from that document:&lt;BR /&gt;&lt;BR /&gt;"The Boot ROM initializes the primary boot path, loads ISL, and allows one to select either the manual or autoboot mode.  In manual mode, the user can select the boot device from all the available peripheral devices.  In&lt;BR /&gt;autoboot mode, the Boot ROM automatically boots the operating system from the primary boot path defined in Stable Storage"</description>
      <pubDate>Mon, 22 Oct 2001 14:41:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/automatic-boot-form-alternate-bootdisk/m-p/2598858#M648046</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2001-10-22T14:41:12Z</dc:date>
    </item>
    <item>
      <title>Re: automatic boot form alternate bootdisk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/automatic-boot-form-alternate-bootdisk/m-p/2598859#M648047</link>
      <description>I had a bit of bitter experience of having "auto search" (setboot -s) on my workstation. If by any chance the CD ROM has a boot CD or if you have some network ignite servers, there is a chance that the system may boot from them during the reboot. So, I would suggest to turn-off auto search method.&lt;BR /&gt;&lt;BR /&gt;But Mike, you don't need to worry about it as the system will continue to be up and running with the mirror disk in case of primary disk failure.&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Mon, 22 Oct 2001 14:46:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/automatic-boot-form-alternate-bootdisk/m-p/2598859#M648047</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2001-10-22T14:46:47Z</dc:date>
    </item>
    <item>
      <title>Re: automatic boot form alternate bootdisk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/automatic-boot-form-alternate-bootdisk/m-p/2598860#M648048</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;your system will boot from the mirror disk, if the disk is configured as bootable and is set as laternate boot path in the system configuration.&lt;BR /&gt;&lt;BR /&gt;Here is a thread for more info.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://us-support.external.hp.com/cki/bin/doc.pl/sid=7159cafb034f90ca0b/screen=ckiDisplayDocument?docId=200000056385778" target="_blank"&gt;http://us-support.external.hp.com/cki/bin/doc.pl/sid=7159cafb034f90ca0b/screen=ckiDisplayDocument?docId=200000056385778&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;thanks&lt;BR /&gt;</description>
      <pubDate>Mon, 22 Oct 2001 14:48:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/automatic-boot-form-alternate-bootdisk/m-p/2598860#M648048</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2001-10-22T14:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: automatic boot form alternate bootdisk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/automatic-boot-form-alternate-bootdisk/m-p/2598861#M648049</link>
      <description>Hi Pat,&lt;BR /&gt;&lt;BR /&gt;I won't swear to it, but I think I've had a pri bo path bite it, and had the machine come up with no fuss on the alternate at boot after the panic.  If I'm not mistaken, the equivalent of a "sea ipl" is done at boot time.  If autoboot is on and autosearch is on and no boot LIF can be found on the pri bo path and the AUTO file contains "hpux -lq", I believe the alt bo path is used without intervention.&lt;BR /&gt;&lt;BR /&gt;I think?&lt;BR /&gt;&lt;BR /&gt;Maybe?&lt;BR /&gt;&lt;BR /&gt;I need a beer :-)&lt;BR /&gt;Jim</description>
      <pubDate>Mon, 22 Oct 2001 14:49:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/automatic-boot-form-alternate-bootdisk/m-p/2598861#M648049</guid>
      <dc:creator>Jim Turner</dc:creator>
      <dc:date>2001-10-22T14:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: automatic boot form alternate bootdisk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/automatic-boot-form-alternate-bootdisk/m-p/2598862#M648050</link>
      <description>PROBLEM&lt;BR /&gt;Although autoboot is turned 'on', it does not work for the&lt;BR /&gt;mirrored vg00.  It has also been verified that the alternate&lt;BR /&gt;bootpath is properly set.&lt;BR /&gt;&lt;BR /&gt;Why doesn't the autoboot work?&lt;BR /&gt;&lt;BR /&gt;CONFIGURATION&lt;BR /&gt;Operating System - HP-UX&lt;BR /&gt;Version - 11.0&lt;BR /&gt;Hardware System - HP9000&lt;BR /&gt;Series - D370&lt;BR /&gt;Subsystem - System Administration&lt;BR /&gt;&lt;BR /&gt;RESOLUTION&lt;BR /&gt;autoboot does not work because neither the D-, K-, or T-Class&lt;BR /&gt;servers can autoboot from an alternate path.  These servers can&lt;BR /&gt;only autoboot from the default path (8/4/5).&lt;BR /&gt;&lt;BR /&gt;To resolve the problem: &lt;BR /&gt;1. Change the primary path to 8/8. &lt;BR /&gt;2. Change the alternate path to 8/4/5. &lt;BR /&gt;Once these changes are made, the system will autoboot when the primary path is unavailable. &lt;BR /&gt;</description>
      <pubDate>Thu, 25 Oct 2001 12:32:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/automatic-boot-form-alternate-bootdisk/m-p/2598862#M648050</guid>
      <dc:creator>Marco A. Vicente</dc:creator>
      <dc:date>2001-10-25T12:32:04Z</dc:date>
    </item>
  </channel>
</rss>

