<?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: Itanium Boot Mirror Setup in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/itanium-boot-mirror-setup/m-p/4101057#M601573</link>
    <description>Probably no different than the previous suggestions, but here is yet another guide:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/B2355-90950/ch06s02.html#cchgjafa" target="_blank"&gt;http://docs.hp.com/en/B2355-90950/ch06s02.html#cchgjafa&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
    <pubDate>Tue, 13 Nov 2007 09:23:31 GMT</pubDate>
    <dc:creator>Pete Randall</dc:creator>
    <dc:date>2007-11-13T09:23:31Z</dc:date>
    <item>
      <title>Itanium Boot Mirror Setup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/itanium-boot-mirror-setup/m-p/4101052#M601568</link>
      <description>Does anyone have a good reference document for setting up a mirror for the boot disk on an Rx (Itanium) server?&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Mon, 12 Nov 2007 18:40:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/itanium-boot-mirror-setup/m-p/4101052#M601568</guid>
      <dc:creator>Kevin Westover</dc:creator>
      <dc:date>2007-11-12T18:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: Itanium Boot Mirror Setup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/itanium-boot-mirror-setup/m-p/4101053#M601569</link>
      <description>Hi Kevin:&lt;BR /&gt;&lt;BR /&gt;See appendix-A of "When Good Disks Go Bad: Dealing with Disk Failures under LVM":&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.docs.hp.com/en/5991-1236/When_Good_Disks_Go_Bad.pdf" target="_blank"&gt;http://www.docs.hp.com/en/5991-1236/When_Good_Disks_Go_Bad.pdf&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Mon, 12 Nov 2007 18:43:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/itanium-boot-mirror-setup/m-p/4101053#M601569</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2007-11-12T18:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: Itanium Boot Mirror Setup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/itanium-boot-mirror-setup/m-p/4101054#M601570</link>
      <description>Hi Kevin,&lt;BR /&gt;&lt;BR /&gt;This is what I follow, very accurate and straight forward...&lt;BR /&gt;&lt;BR /&gt;1. From HPUX, use vgdisplay to identify the disk that is in vg00. Use&lt;BR /&gt;   ioscan to find the spare disk.&lt;BR /&gt;&lt;BR /&gt;   # vgdisplay -v --&amp;gt; vg00 is on /dev/dsk/c2t1d0s2 in this example&lt;BR /&gt;   # ioscan -efunC disk --&amp;gt; Let's assume c3t2d0 for this example&lt;BR /&gt;&lt;BR /&gt;2. Create the system, OS, and service partitions.&lt;BR /&gt;&lt;BR /&gt;   # cat &amp;lt;&lt;EOF&gt;/tmp/partitionfile&lt;BR /&gt;   &amp;gt; 3&lt;BR /&gt;   &amp;gt; EFI 500MB&lt;BR /&gt;   &amp;gt; HPUX 100%&lt;BR /&gt;   &amp;gt; HPSP 400MB&lt;BR /&gt;   &amp;gt; EOF&lt;BR /&gt;   # idisk -wf /tmp/partitionfile /dev/rdsk/c3t2d0&lt;BR /&gt;idisk version: 1.31&lt;BR /&gt;********************** WARNING ***********************&lt;BR /&gt;If you continue you may destroy all data on this disk.&lt;BR /&gt;Do you wish to continue(yes/no)? yes  &amp;lt;-- Answer "yes" and not "y"&lt;BR /&gt;&lt;BR /&gt;3. Create device files needed for the new partitions.&lt;BR /&gt;&lt;BR /&gt;   # insf -eC disk&lt;BR /&gt;&lt;BR /&gt;4. Verify the partition table.&lt;BR /&gt;&lt;BR /&gt;   # idisk /dev/rdsk/c3t2d0&lt;BR /&gt;&lt;BR /&gt;5. Verify that the device files were created properly.&lt;BR /&gt;&lt;BR /&gt;   # ioscan -efnC disk --&amp;gt; c3t2d0 is 0/1/1/1.2.0&lt;BR /&gt;&lt;BR /&gt;6. Initialize the efi partition for use.&lt;BR /&gt;&lt;BR /&gt;   # efi_fsinit -d /dev/rdsk/c3t2d0s1&lt;BR /&gt;&lt;BR /&gt;7. Populate the /efi/hpux/ directory in the new EFI system partition.&lt;BR /&gt;&lt;BR /&gt;   # mkboot -e -l /dev/rdsk/c3t2d0&lt;BR /&gt;&lt;BR /&gt;8. Change the auto file for the mirror to boot without quorum.&lt;BR /&gt;   NOTE: Using "s1"&lt;BR /&gt;&lt;BR /&gt;   # echo "boot vmunix -lq" &amp;gt; /tmp/AUTO.lq&lt;BR /&gt;   # efi_cp -d /dev/rdsk/c3t2d0s1 /tmp/AUTO.lq /EFI/HPUX/AUTO&lt;BR /&gt;&lt;BR /&gt;   NOTE: We assume that if we boot from the primary, the mirror is fully&lt;BR /&gt;   functional and therefore we don't need to override quorum. Your site&lt;BR /&gt;   might require that both disks override quorum.&lt;BR /&gt;&lt;BR /&gt;9. Verify the contents of the auto file on the primary and the mirror.&lt;BR /&gt;   NOTE: Using "s1"&lt;BR /&gt;&lt;BR /&gt;   # efi_cp -d /dev/rdsk/c2t1d0s1 -u /EFI/HPUX/AUTO /tmp/AUTO.pri&lt;BR /&gt;   # efi_cp -d /dev/rdsk/c3t2d0s1 -u /EFI/HPUX/AUTO /tmp/AUTO.alt&lt;BR /&gt;   # cat /tmp/AUTO.pri&lt;BR /&gt;   # cat /tmp/AUTO.alt&lt;BR /&gt;&lt;BR /&gt;10. Add the new partition to vg00.&lt;BR /&gt;    NOTE: Using "s2"&lt;BR /&gt;&lt;BR /&gt;   # pvcreate -fB /dev/rdsk/c3t2d0s2&lt;BR /&gt;   # vgextend vg00 /dev/dsk/c3t2d0s2&lt;BR /&gt;&lt;BR /&gt;11. Mirror all logical volumes in vg00.&lt;BR /&gt;    NOTE: Using "s2"&lt;BR /&gt;&lt;BR /&gt;   # lvextend -m 1 /dev/vg00/lvol1 /dev/dsk/c3t2d0s2&lt;BR /&gt;   # lvextend -m 1 /dev/vg00/lvol2 /dev/dsk/c3t2d0s2&lt;BR /&gt;   # lvextend -m 1 /dev/vg00/lvol3 /dev/dsk/c3t2d0s2&lt;BR /&gt;   .&lt;BR /&gt;   .&lt;BR /&gt;   .&lt;BR /&gt;   # lvextend -m 1 /dev/vg00/lvol8 /dev/dsk/c3t2d0s2&lt;BR /&gt;&lt;BR /&gt;12. Add the new disk to /stand/bootconf.&lt;BR /&gt;    NOTE: Using "s2"&lt;BR /&gt;&lt;BR /&gt;    # echo "l /dev/dsk/c3t2d0s2" &amp;gt;&amp;gt; /stand/bootconf&lt;BR /&gt;&lt;BR /&gt;13. Verify that the new disk was added to vg00, and the lv's are in sync.&lt;BR /&gt;&lt;BR /&gt;    # vgdisplay -v vg00&lt;BR /&gt;&lt;BR /&gt;14. Verify that the BDRA was updated properly. Take note of the HW paths for&lt;BR /&gt;    step 15.&lt;BR /&gt;&lt;BR /&gt;    # lvlnboot -v&lt;BR /&gt;&lt;BR /&gt;15. Add EFI primary and high availability boot path menu entries.&lt;BR /&gt;&lt;BR /&gt;    # setboot -p 0/1/1/0.1.0 &amp;lt;-- Set primary disk&lt;BR /&gt;    # setboot -h 0/1/1/1.2.0 &amp;lt;-- Set mirror disk&lt;BR /&gt;    # setboot -b on &amp;lt;-- Set autoboot on&lt;BR /&gt;&lt;BR /&gt;16. Verify that the primary and mirror boot paths are configured properly.&lt;BR /&gt;&lt;BR /&gt;    # setboot&lt;BR /&gt;&lt;BR /&gt;17. Test the new mirror by booting off of it.&lt;BR /&gt;&lt;BR /&gt;    # shutdown -r -y 0&lt;BR /&gt;&lt;BR /&gt;18. Select "HP-UX HA Alternate Boot" to test the mirror.&lt;BR /&gt;&lt;BR /&gt;    EFI Boot Manager ver 1.10 [14.61]  Firmware ver 2.21 [4334]&lt;BR /&gt;    Please select a boot option&lt;BR /&gt;         HP-UX Primary Boot: 0/1/1/0.1.0&lt;BR /&gt;         HP-UX HA Alternate Boot: 0/1/1/1.2.0&lt;BR /&gt;         EFI Shell [Built-in]&lt;BR /&gt;&lt;BR /&gt;20. Verify which disk/kernel you booted from.&lt;BR /&gt;&lt;BR /&gt;    # grep "Boot device" /var/adm/syslog/syslog.log&lt;BR /&gt;       vmunix: Boot device's HP-UX HW path is: 0.1.1.1.2.0&lt;BR /&gt;&lt;BR /&gt;21. Remove temporary files.&lt;BR /&gt;&lt;BR /&gt;    # rm /tmp/partitionfile /tmp/AUTO*&lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Prashanth&lt;BR /&gt;&lt;/EOF&gt;</description>
      <pubDate>Mon, 12 Nov 2007 18:56:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/itanium-boot-mirror-setup/m-p/4101054#M601570</guid>
      <dc:creator>Prashanth.D.S</dc:creator>
      <dc:date>2007-11-12T18:56:40Z</dc:date>
    </item>
    <item>
      <title>Re: Itanium Boot Mirror Setup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/itanium-boot-mirror-setup/m-p/4101055#M601571</link>
      <description>Take a look at pages 634-637 of:&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/B2355-90950/B2355-90950.pdf" target="_blank"&gt;http://docs.hp.com/en/B2355-90950/B2355-90950.pdf&lt;/A&gt;</description>
      <pubDate>Mon, 12 Nov 2007 23:46:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/itanium-boot-mirror-setup/m-p/4101055#M601571</guid>
      <dc:creator>melvyn burnard</dc:creator>
      <dc:date>2007-11-12T23:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Itanium Boot Mirror Setup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/itanium-boot-mirror-setup/m-p/4101056#M601572</link>
      <description>Hi Kevin,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;No more suggestion after the Prashanth.D.S's detailed answer.&lt;BR /&gt;&lt;BR /&gt;So in attachment you will find a little gift: a script I use to make all mirror of my client's HP-UX systems.  I use it frequently and it works pretty well.&lt;BR /&gt;&lt;BR /&gt;You have to edit 2 variables at the beginning of the script: SRC, which should point the source disk already in vg00 (I know, i know : i could find it automatically !), and MIR, which should point the mirror disk you want to add.&lt;BR /&gt;&lt;BR /&gt;It works on PA-RISC or ITANIUM all versions 11.X ... except with 11iv3 for the moment.&lt;BR /&gt;&lt;BR /&gt;Comments are in french ;-)&lt;BR /&gt;&lt;BR /&gt;Hope this will help&lt;BR /&gt;&lt;BR /&gt;Eric&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Nov 2007 08:50:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/itanium-boot-mirror-setup/m-p/4101056#M601572</guid>
      <dc:creator>Eric SAUBIGNAC</dc:creator>
      <dc:date>2007-11-13T08:50:10Z</dc:date>
    </item>
    <item>
      <title>Re: Itanium Boot Mirror Setup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/itanium-boot-mirror-setup/m-p/4101057#M601573</link>
      <description>Probably no different than the previous suggestions, but here is yet another guide:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/B2355-90950/ch06s02.html#cchgjafa" target="_blank"&gt;http://docs.hp.com/en/B2355-90950/ch06s02.html#cchgjafa&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Tue, 13 Nov 2007 09:23:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/itanium-boot-mirror-setup/m-p/4101057#M601573</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2007-11-13T09:23:31Z</dc:date>
    </item>
    <item>
      <title>Re: Itanium Boot Mirror Setup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/itanium-boot-mirror-setup/m-p/4101058#M601574</link>
      <description>And just because there seems to be a plethera of places.&lt;BR /&gt;&lt;BR /&gt;Knowledge Base ID: emr_na-c00865281-1&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Nov 2007 13:29:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/itanium-boot-mirror-setup/m-p/4101058#M601574</guid>
      <dc:creator>Tim Nelson</dc:creator>
      <dc:date>2007-11-13T13:29:48Z</dc:date>
    </item>
    <item>
      <title>Re: Itanium Boot Mirror Setup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/itanium-boot-mirror-setup/m-p/4101059#M601575</link>
      <description>Thanks for everyone's help with this.  I now have what I need.  Take care.&lt;BR /&gt;&lt;BR /&gt;Kevin</description>
      <pubDate>Wed, 14 Nov 2007 18:27:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/itanium-boot-mirror-setup/m-p/4101059#M601575</guid>
      <dc:creator>Kevin Westover</dc:creator>
      <dc:date>2007-11-14T18:27:01Z</dc:date>
    </item>
  </channel>
</rss>

