<?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: Manual root disk mirroring on Itanium in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/manual-root-disk-mirroring-on-itanium/m-p/3972913#M293246</link>
    <description>... and it is not available for 11.00 or 11.11 ...</description>
    <pubDate>Fri, 30 Mar 2007 11:32:07 GMT</pubDate>
    <dc:creator>Torsten.</dc:creator>
    <dc:date>2007-03-30T11:32:07Z</dc:date>
    <item>
      <title>Manual root disk mirroring on Itanium</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/manual-root-disk-mirroring-on-itanium/m-p/3972907#M293240</link>
      <description>For many years I have been manually mirroring an alternate boot/root disk on HPUX 11.11.  This is in addition to running mirrorUX.  The idea was always to have a rescue disk, safe from bad patch installations or other unforeseen problems.  Booted from the alternate rescue disk several times and it has always worked.&lt;BR /&gt;&lt;BR /&gt;We have some new Itanium rx3600 servers on order now.  Coming with 11.23 and a p400 smart array controller.  I'm just wondering if my old steps for manually creating a boot disk will still work  with these servers.  Has anyone tried this?&lt;BR /&gt;&lt;BR /&gt;Here is my process, assuming c2t2d0 is an unused disk:&lt;BR /&gt;&lt;BR /&gt;pvcreate -B /dev/rdsk/c2t2d0&lt;BR /&gt;&lt;BR /&gt;mkdir /dev/vgroot&lt;BR /&gt;&lt;BR /&gt;ll /dev/*/group  &amp;lt;- find an unused number&lt;BR /&gt;&lt;BR /&gt;mknod /dev/vgroot/group c 64 0x0?0000&lt;BR /&gt;&lt;BR /&gt;vgcreate /dev/vgroot /dev/dsk/c2t2d0&lt;BR /&gt;&lt;BR /&gt;mkboot /dev/rdsk/c2t2d0&lt;BR /&gt;&lt;BR /&gt;mkboot -a "hpux" /dev/rdsk/c2t2d0&lt;BR /&gt;&lt;BR /&gt;mkboot -b /usr/sbin/diag/lif/updatediaglif2 -p ISL -p AUTO -p HPUX -p PAD -p LABEL /dev/rdsk/c2t2d0 &lt;BR /&gt;&lt;BR /&gt;lifls -l /dev/dsk/c2t2d0  (Compare to primary boot drive)&lt;BR /&gt;&lt;BR /&gt;lvcreate -L 304 -C y -r n /dev/vgroot   &amp;lt;- lvol1 used for /stand&lt;BR /&gt;&lt;BR /&gt;lvcreate -L 2048 -C y -r n /dev/vgroot  &amp;lt;- lvol2 used for swap&lt;BR /&gt;&lt;BR /&gt;lvcreate -L 200 -C y -r n /dev/vgroot  &amp;lt;- lvol3 used for /&lt;BR /&gt;&lt;BR /&gt;lvcreate -L 200 /dev/vgroot  &amp;lt;- lvol4 used for /tmp&lt;BR /&gt;lvcreate -L 512 /dev/vgroot  &amp;lt;- lvol5 used for /home&lt;BR /&gt;lvcreate -L 1024 /dev/vgroot  &amp;lt;- lvol6 used for /opt&lt;BR /&gt;lvcreate -L 1432 /dev/vgroot  &amp;lt;- lvol7 used for /usr&lt;BR /&gt;lvcreate -L 1024 /dev/vgroot  &amp;lt;- lvol8 used for /var&lt;BR /&gt;&lt;BR /&gt;newfs -F hfs /dev/vgroot/rlvol1  &amp;lt;- /stand filesystem must be HFS&lt;BR /&gt;....skip lvol2 since it is swap&lt;BR /&gt;newfs -F vxfs /dev/vgroot/rlvol3 thru rlvol8&lt;BR /&gt;&lt;BR /&gt;cd /&lt;BR /&gt;mkdir altroot&lt;BR /&gt;mount /dev/vgroot/lvol3 /altroot&lt;BR /&gt;&lt;BR /&gt;cd /&lt;BR /&gt;find . -xdev -depth -print | cpio -pxudm /altroot&lt;BR /&gt;&lt;BR /&gt;mount /dev/vgroot/lvol1 /altroot/stand&lt;BR /&gt;mount /dev/vgroot/lvol4 /altroot/tmp&lt;BR /&gt;mount /dev/vgroot/lvol5 /altroot/home&lt;BR /&gt;mount /dev/vgroot/lvol6 /altroot/opt&lt;BR /&gt;mount /dev/vgroot/lvol7 /altroot/usr&lt;BR /&gt;mount /dev/vgroot/lvol8 /altroot/var&lt;BR /&gt;&lt;BR /&gt;cd /stand&lt;BR /&gt;find . -xdev -depth -print | cpio -pxudm /altroot/stand&lt;BR /&gt;cd /home&lt;BR /&gt;find . -xdev -depth -print | cpio -pxudm /altroot/home&lt;BR /&gt;cd /opt&lt;BR /&gt;find . -xdev -depth -print | cpio -pxudm /altroot/opt&lt;BR /&gt;# cd /tmp&lt;BR /&gt;# find . -xdev -depth -print | cpio -pxudm /altroot/tmp&lt;BR /&gt;cd /usr&lt;BR /&gt;find . -xdev -depth -print | cpio -pxudm /altroot/usr&lt;BR /&gt;cd /var&lt;BR /&gt;find . -xdev -depth -print | cpio -pxudm /altroot/var&lt;BR /&gt;&lt;BR /&gt;lvlnboot -b lvol1 /dev/vgroot&lt;BR /&gt;lvlnboot -r lvol3 /dev/vgroot&lt;BR /&gt;lvlnboot -s lvol2 /dev/vgroot&lt;BR /&gt;lvlnboot -d lvol2 /dev/vgroot&lt;BR /&gt;lvlnboot -R&lt;BR /&gt;&lt;BR /&gt;lvlnboot -v  &amp;lt;- verify boot configuration&lt;BR /&gt;&lt;BR /&gt;Update /altroot/etc/fstab to reflect new root vg&lt;BR /&gt;Update /altroot/sbin/ioinitrc to include the following line:&lt;BR /&gt; - /sbin/lvlnboot -c /dev/vgroot&lt;BR /&gt;&lt;BR /&gt;setboot -p 0/0/1/1.2.0 -a 0/0/2/0.2.0  &amp;lt;- set primary/alternate boot paths.&lt;BR /&gt;&lt;BR /&gt;Reboot the system (shutdown -ry 0), interrupt the boot process and boot from alternate drive.</description>
      <pubDate>Fri, 30 Mar 2007 10:01:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/manual-root-disk-mirroring-on-itanium/m-p/3972907#M293240</guid>
      <dc:creator>Tim Medford</dc:creator>
      <dc:date>2007-03-30T10:01:06Z</dc:date>
    </item>
    <item>
      <title>Re: Manual root disk mirroring on Itanium</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/manual-root-disk-mirroring-on-itanium/m-p/3972908#M293241</link>
      <description>The above method by itself will not work.&lt;BR /&gt;&lt;BR /&gt;You must remember that the Itanium machines have disk slices on the root disk, so you would  also need to get c2t2d0s1, c2t2d0s2 and c2t2d0s3 set up on the disks.&lt;BR /&gt;&lt;BR /&gt;There is information on how to do this in the regular Itanium mirroring instructions.&lt;BR /&gt;&lt;BR /&gt;If you do that, and follow your procedures, then I think you should be OK.  You would need to be sure and test it before you need it though.</description>
      <pubDate>Fri, 30 Mar 2007 10:06:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/manual-root-disk-mirroring-on-itanium/m-p/3972908#M293241</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2007-03-30T10:06:32Z</dc:date>
    </item>
    <item>
      <title>Re: Manual root disk mirroring on Itanium</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/manual-root-disk-mirroring-on-itanium/m-p/3972909#M293242</link>
      <description>Tim,&lt;BR /&gt;&lt;BR /&gt;HP spotted that a lot of people were doing this and have now released a product that will do this for you:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/DRD/index.html" target="_blank"&gt;http://docs.hp.com/en/DRD/index.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;The advantage with Dynamic Root Disks is that you can also apply patches to the 3rd copy online and then treboot to it to test.&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;&lt;BR /&gt;Duncan</description>
      <pubDate>Fri, 30 Mar 2007 10:17:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/manual-root-disk-mirroring-on-itanium/m-p/3972909#M293242</guid>
      <dc:creator>Duncan Edmonstone</dc:creator>
      <dc:date>2007-03-30T10:17:17Z</dc:date>
    </item>
    <item>
      <title>Re: Manual root disk mirroring on Itanium</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/manual-root-disk-mirroring-on-itanium/m-p/3972910#M293243</link>
      <description>HI,&lt;BR /&gt;&lt;BR /&gt;the LVM mirroring procedure is really different for Integrity servers, see&lt;BR /&gt;&lt;A href="http://www1.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&amp;amp;docId=200000079976529" target="_blank"&gt;http://www1.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&amp;amp;docId=200000079976529&lt;/A&gt; &lt;BR /&gt;&lt;BR /&gt;Also the P400 controller is able to do a hardware mirroring, the procedure is different again.&lt;BR /&gt;For both cases, the DRD solution is a good option.</description>
      <pubDate>Fri, 30 Mar 2007 10:38:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/manual-root-disk-mirroring-on-itanium/m-p/3972910#M293243</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2007-03-30T10:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: Manual root disk mirroring on Itanium</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/manual-root-disk-mirroring-on-itanium/m-p/3972911#M293244</link>
      <description>Thanks everyone.&lt;BR /&gt;&lt;BR /&gt;Wow, that DRD product looks promising, I have not even heard of it.  Probably could have saved me a bunch of work over the years.&lt;BR /&gt;&lt;BR /&gt;I was planning to use the Raid controller to run the primary boot as either Raid5 or Raid6, so I would gain the hardware mirroring there.  Then have an igniteUX tape as a backup.  And finally run DRD to a rescue disk.&lt;BR /&gt;&lt;BR /&gt;If that doesn't cover things, I don't know what will.</description>
      <pubDate>Fri, 30 Mar 2007 10:43:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/manual-root-disk-mirroring-on-itanium/m-p/3972911#M293244</guid>
      <dc:creator>Tim Medford</dc:creator>
      <dc:date>2007-03-30T10:43:21Z</dc:date>
    </item>
    <item>
      <title>Re: Manual root disk mirroring on Itanium</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/manual-root-disk-mirroring-on-itanium/m-p/3972912#M293245</link>
      <description>DRD actually wouldn't have saved you much work over the years.  The product was just released within the last month or two.  It hasn't been out that long.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 30 Mar 2007 11:28:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/manual-root-disk-mirroring-on-itanium/m-p/3972912#M293245</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2007-03-30T11:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: Manual root disk mirroring on Itanium</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/manual-root-disk-mirroring-on-itanium/m-p/3972913#M293246</link>
      <description>... and it is not available for 11.00 or 11.11 ...</description>
      <pubDate>Fri, 30 Mar 2007 11:32:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/manual-root-disk-mirroring-on-itanium/m-p/3972913#M293246</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2007-03-30T11:32:07Z</dc:date>
    </item>
  </channel>
</rss>

