<?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: Mirror Disk Help in Disk Enclosures</title>
    <link>https://community.hpe.com/t5/disk-enclosures/mirror-disk-help/m-p/2563914#M2487</link>
    <description>Hi Steven,&lt;BR /&gt;&lt;BR /&gt;Since you don't mention your hardware, I'll speak in general terms. To do this correctly,&lt;BR /&gt;you need to protect your self from more than simply a disk failure. You need to be able to tolerate a controller failure or a cable failure (or accidental disconnection) as well.&lt;BR /&gt;&lt;BR /&gt;I'll use a D-3xx box with internal hot-plug drives as an example. Let's say you are booting from a 4GB disk on the internal HVD SCSI drive. To mirror correctly, you need to &lt;BR /&gt;have an external drive enclosure (e.g. a Jamaica), a second HVD SCSI controller, a second (ideally) identical 4GB drive, cables, and terminator(s). You of course also must install the Mirror/UX software.&lt;BR /&gt;&lt;BR /&gt;This fully protects and mirrors your data. &lt;BR /&gt;If possible, avoid internal disks which are not&lt;BR /&gt;hot-pluggable. For example, none of my K-box use internal drives instead I boot from external drives - this way I can replace a drive without shutting down the box.&lt;BR /&gt;&lt;BR /&gt;You can, of course, simply put in a second drive (with a different SCSI ID) on your current bus but that only protects from a drive failure.&lt;BR /&gt;&lt;BR /&gt;Once the hardware is configured, the actual mirroring is simple. &lt;BR /&gt;&lt;BR /&gt;Regards, Clay&lt;BR /&gt;</description>
    <pubDate>Thu, 09 Aug 2001 20:16:17 GMT</pubDate>
    <dc:creator>A. Clay Stephenson</dc:creator>
    <dc:date>2001-08-09T20:16:17Z</dc:date>
    <item>
      <title>Mirror Disk Help</title>
      <link>https://community.hpe.com/t5/disk-enclosures/mirror-disk-help/m-p/2563913#M2486</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I would like to know how to add the mirror for root drive that I don't have at all.&lt;BR /&gt;&lt;BR /&gt;Any card, action etc. do I need to prepare?&lt;BR /&gt;&lt;BR /&gt;Appreciated.&lt;BR /&gt;&lt;BR /&gt;Steven&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 09 Aug 2001 17:27:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/disk-enclosures/mirror-disk-help/m-p/2563913#M2486</guid>
      <dc:creator>Steven Chen_1</dc:creator>
      <dc:date>2001-08-09T17:27:53Z</dc:date>
    </item>
    <item>
      <title>Re: Mirror Disk Help</title>
      <link>https://community.hpe.com/t5/disk-enclosures/mirror-disk-help/m-p/2563914#M2487</link>
      <description>Hi Steven,&lt;BR /&gt;&lt;BR /&gt;Since you don't mention your hardware, I'll speak in general terms. To do this correctly,&lt;BR /&gt;you need to protect your self from more than simply a disk failure. You need to be able to tolerate a controller failure or a cable failure (or accidental disconnection) as well.&lt;BR /&gt;&lt;BR /&gt;I'll use a D-3xx box with internal hot-plug drives as an example. Let's say you are booting from a 4GB disk on the internal HVD SCSI drive. To mirror correctly, you need to &lt;BR /&gt;have an external drive enclosure (e.g. a Jamaica), a second HVD SCSI controller, a second (ideally) identical 4GB drive, cables, and terminator(s). You of course also must install the Mirror/UX software.&lt;BR /&gt;&lt;BR /&gt;This fully protects and mirrors your data. &lt;BR /&gt;If possible, avoid internal disks which are not&lt;BR /&gt;hot-pluggable. For example, none of my K-box use internal drives instead I boot from external drives - this way I can replace a drive without shutting down the box.&lt;BR /&gt;&lt;BR /&gt;You can, of course, simply put in a second drive (with a different SCSI ID) on your current bus but that only protects from a drive failure.&lt;BR /&gt;&lt;BR /&gt;Once the hardware is configured, the actual mirroring is simple. &lt;BR /&gt;&lt;BR /&gt;Regards, Clay&lt;BR /&gt;</description>
      <pubDate>Thu, 09 Aug 2001 20:16:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/disk-enclosures/mirror-disk-help/m-p/2563914#M2487</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2001-08-09T20:16:17Z</dc:date>
    </item>
    <item>
      <title>Re: Mirror Disk Help</title>
      <link>https://community.hpe.com/t5/disk-enclosures/mirror-disk-help/m-p/2563915#M2488</link>
      <description>&lt;BR /&gt;Hi Steven,&lt;BR /&gt;&lt;BR /&gt;Clay's suggestion in addressing the hardware&lt;BR /&gt;issues are perfect. &lt;BR /&gt;&lt;BR /&gt;I have a script here slightly different with&lt;BR /&gt;a little less typing to do the logical volume &lt;BR /&gt;mirroring.&lt;BR /&gt;&lt;BR /&gt;# pvcreate -f -B /dev/rdsk/cXtXdX&lt;BR /&gt;# vgextend /dev/vg00 /dev/rdsk/cXtXdX&lt;BR /&gt;# mkboot /dev/rdsk/cXtXdX&lt;BR /&gt;# mkboot -a "hpux -lq(;0)/stand/vmunix" /dev/rdsk/cXtXdX&lt;BR /&gt;# lvlnboot -R&lt;BR /&gt;# for LVOL in /dev/vg00/lv*&lt;BR /&gt;&amp;gt; do&lt;BR /&gt;&amp;gt; echo $LVOL&lt;BR /&gt;&amp;gt; lvextend -m 1 $LVOL&lt;BR /&gt;&amp;gt; done&lt;BR /&gt;#&lt;BR /&gt;&lt;BR /&gt;One other suggestion is to do a make_recovery tape on completion. This will ensure that you have an operating system of your system on a bootable tape.&lt;BR /&gt;we use this procedure.&lt;BR /&gt;&lt;BR /&gt;# make_tape_recovery -x inc_entire=vg00 -I -v -a /dev/rmt/0mn&lt;BR /&gt;(assuming /dev/rmt/0m is you DDS tape drive)&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;-Michael&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 09 Aug 2001 22:58:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/disk-enclosures/mirror-disk-help/m-p/2563915#M2488</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2001-08-09T22:58:15Z</dc:date>
    </item>
    <item>
      <title>Re: Mirror Disk Help</title>
      <link>https://community.hpe.com/t5/disk-enclosures/mirror-disk-help/m-p/2563916#M2489</link>
      <description>Hi Steven,&lt;BR /&gt;&lt;BR /&gt;You might want look at chapter 7  in &lt;A href="http://docs.hp.com/hpux/pdf/B2355-90672.pdf" target="_blank"&gt;http://docs.hp.com/hpux/pdf/B2355-90672.pdf&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;or &lt;BR /&gt;&lt;A href="http://docs.hp.com/hpux/online/00/00/67-con.html" target="_blank"&gt;http://docs.hp.com/hpux/online/00/00/67-con.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;You will get more information about guidelines for setting/managing LVM mirrors.&lt;BR /&gt;&lt;BR /&gt;-HTH&lt;BR /&gt;I am RU</description>
      <pubDate>Sat, 11 Aug 2001 23:36:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/disk-enclosures/mirror-disk-help/m-p/2563916#M2489</guid>
      <dc:creator>linuxfan</dc:creator>
      <dc:date>2001-08-11T23:36:08Z</dc:date>
    </item>
  </channel>
</rss>

