<?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: disk mirror in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-mirror/m-p/3742244#M256334</link>
    <description>Hello,&lt;BR /&gt;As an additon to other replies try to have a&lt;BR /&gt;look of the attachment.&lt;BR /&gt;Good Luck,&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Thu, 02 Mar 2006 02:39:02 GMT</pubDate>
    <dc:creator>Cem Tugrul</dc:creator>
    <dc:date>2006-03-02T02:39:02Z</dc:date>
    <item>
      <title>disk mirror</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-mirror/m-p/3742239#M256329</link>
      <description>how to disk mirroring in Unix 11i</description>
      <pubDate>Wed, 01 Mar 2006 23:42:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-mirror/m-p/3742239#M256329</guid>
      <dc:creator>shdeshpande</dc:creator>
      <dc:date>2006-03-01T23:42:48Z</dc:date>
    </item>
    <item>
      <title>Re: disk mirror</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-mirror/m-p/3742240#M256330</link>
      <description>hi&lt;BR /&gt;&lt;BR /&gt;you nead mirror ux installed on HPUX 11.11i&lt;BR /&gt;&lt;BR /&gt;read this &lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/5991-1236/When_Good_Disks_Go_Bad.pdf" target="_blank"&gt;http://docs.hp.com/en/5991-1236/When_Good_Disks_Go_Bad.pdf&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;the command is &lt;BR /&gt;&lt;BR /&gt;lvextend -m 1 /dev/vgxx/lvol /dev/dsk/cxtxdx&lt;BR /&gt;&lt;BR /&gt;please refer&lt;BR /&gt;man lvextend&lt;BR /&gt;&lt;BR /&gt;please refer previous threads &lt;BR /&gt;just type mirror and search &lt;BR /&gt;you will find many threads&lt;BR /&gt;&lt;BR /&gt;HTH &lt;BR /&gt;&lt;BR /&gt;shri</description>
      <pubDate>Thu, 02 Mar 2006 01:13:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-mirror/m-p/3742240#M256330</guid>
      <dc:creator>shridhar_1</dc:creator>
      <dc:date>2006-03-02T01:13:07Z</dc:date>
    </item>
    <item>
      <title>Re: disk mirror</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-mirror/m-p/3742241#M256331</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Which OE of 11i are you having?&lt;BR /&gt;&lt;BR /&gt;If it is MCOE then mirror-Ux is part of the OS and do not need any extra license.&lt;BR /&gt;&lt;BR /&gt;For mirroring you can opt various options depending upon requirement. Importantly what you want to mirror? Is it OS,or data that too of what sort?&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Devender</description>
      <pubDate>Thu, 02 Mar 2006 01:22:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-mirror/m-p/3742241#M256331</guid>
      <dc:creator>Devender Khatana</dc:creator>
      <dc:date>2006-03-02T01:22:22Z</dc:date>
    </item>
    <item>
      <title>Re: disk mirror</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-mirror/m-p/3742242#M256332</link>
      <description>Hi shdeshpande,&lt;BR /&gt;&lt;BR /&gt;There are few steps to mirror the root disks.First of all you must have mirror UX software installed on your machine then follow these steps.&lt;BR /&gt;&lt;BR /&gt;Suppose /dev/dsk/c0t6d0 is the root disk and /dev/dsk/c3t6d0 is the disk you want to make a mirror of.&lt;BR /&gt;&lt;BR /&gt;1. Create a bootable LVM disk to be used for the mirror.&lt;BR /&gt;pvcreate -B /dev/rdsk/c3t6d0&lt;BR /&gt;2. Add this disk to the current root volume group.&lt;BR /&gt;vgextend /dev/vg00 /dev/dsk/c3t6d0&lt;BR /&gt;3. Make the new disk a boot disk.&lt;BR /&gt;mkboot -l /dev/rdsk/c3t6d0&lt;BR /&gt;4. Copy the correct AUTO file into the new LIF area.&lt;BR /&gt;mkboot -a "hpux -lq (;0)/vmunix" /dev/rdsk/c3t6d0&lt;BR /&gt;5. Mirror the boot, root and primary swap logical volumes to the new&lt;BR /&gt;bootable disk. Ensure that all devices in vg00, such as /usr, /swap,&lt;BR /&gt;etc., are mirrored.&lt;BR /&gt;The following is an example of mirroring the boot logical volume:&lt;BR /&gt;lvextend -m 1 /dev/vg00/lvol1 /dev/dsk/c3t6d0&lt;BR /&gt;The following is an example of mirroring the primary swap logical&lt;BR /&gt;volume:&lt;BR /&gt;lvextend -m 1 /dev/vg00/lvol2 /dev/dsk/c3t6d0&lt;BR /&gt;The following is an example of mirroring the root logical volume:&lt;BR /&gt;lvextend -m 1 /dev/vg00/lvol3 /dev/dsk/c3t6d0&lt;BR /&gt;6. Update the boot information contained in the BDRA for the mirror&lt;BR /&gt;copies of boot, primary swap and root.&lt;BR /&gt;/usr/sbin/lvlnboot -b /dev/vg00/lvol1&lt;BR /&gt;/usr/sbin/lvlnboot -s /dev/vg00/lvol2&lt;BR /&gt;/usr/sbin/lvlnboot -r /dev/vg00/lvol3&lt;BR /&gt;7. Check if the BDRA is correct.&lt;BR /&gt;/usr/sbin/lvlnboot -R /dev/vg00&lt;BR /&gt;8. Verify that the mirrors were properly created.&lt;BR /&gt;lvlnboot -v /dev/vg00&lt;BR /&gt;The output of this command is shown in a display like the following:&lt;BR /&gt;Boot Definitions for Volume Group /dev/vg00:&lt;BR /&gt;Boot Definitions for Volume Group /dev/vg00:&lt;BR /&gt;Physical Volumes belonging in Root Volume Group:&lt;BR /&gt;/dev/dsk/c0t6d0 (1/0/0/3/0.6.0) -- Boot Disk&lt;BR /&gt;/dev/dsk/c3t6d0 (1/0/1/0/0/1/1.6.0) -- Boot Disk&lt;BR /&gt;Boot: lvol1 on: /dev/dsk/c0t6d0&lt;BR /&gt;/dev/dsk/c3t6d0&lt;BR /&gt;Root: lvol3 on: /dev/dsk/c0t6d0&lt;BR /&gt;/dev/dsk/c3t6d0&lt;BR /&gt;Swap: lvol2 on: /dev/dsk/c0t6d0&lt;BR /&gt;/dev/dsk/c3t6d0&lt;BR /&gt;Dump: lvol2 on: /dev/dsk/c0t6d0, 0&lt;BR /&gt;&lt;BR /&gt;vgdisplay -v vg00&lt;BR /&gt;&lt;BR /&gt;Then lvextend for all other lvols:&lt;BR /&gt;&lt;BR /&gt;lvextend -m 1 /dev/vg00/lvol4 /dev/dsk/c3t6d0&lt;BR /&gt;lvextend -m 1 /dev/vg00/lvol5 /dev/dsk/c3t6d0&lt;BR /&gt;lvextend -m 1 /dev/vg00/lvol6 /dev/dsk/c3t6d0&lt;BR /&gt;lvextend -m 1 /dev/vg00/lvol7 /dev/dsk/c3t6d0&lt;BR /&gt;lvextend -m 1 /dev/vg00/lvol8 /dev/dsk/c3t6d0&lt;BR /&gt;lvextend -m 1 /dev/vg00/lvol9 /dev/dsk/c3t6d0&lt;BR /&gt;lvextend -m 1 /dev/vg00/lvol10 /dev/dsk/c3t6d0&lt;BR /&gt;lvextend -m 1 /dev/vg00/lvol11 /dev/dsk/c3t6d0&lt;BR /&gt;&lt;BR /&gt;or you can simply run the attached script for mirroring.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Asif Sharif&lt;BR /&gt;</description>
      <pubDate>Thu, 02 Mar 2006 01:25:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-mirror/m-p/3742242#M256332</guid>
      <dc:creator>Asif Sharif</dc:creator>
      <dc:date>2006-03-02T01:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: disk mirror</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-mirror/m-p/3742243#M256333</link>
      <description>Asif has attached a very nice sript on mirroring. &lt;BR /&gt;Also find attached one more doc for mirroring.&lt;BR /&gt;Thought it could be helpful.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;</description>
      <pubDate>Thu, 02 Mar 2006 01:51:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-mirror/m-p/3742243#M256333</guid>
      <dc:creator>Bharat Katkar</dc:creator>
      <dc:date>2006-03-02T01:51:35Z</dc:date>
    </item>
    <item>
      <title>Re: disk mirror</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-mirror/m-p/3742244#M256334</link>
      <description>Hello,&lt;BR /&gt;As an additon to other replies try to have a&lt;BR /&gt;look of the attachment.&lt;BR /&gt;Good Luck,&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 02 Mar 2006 02:39:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-mirror/m-p/3742244#M256334</guid>
      <dc:creator>Cem Tugrul</dc:creator>
      <dc:date>2006-03-02T02:39:02Z</dc:date>
    </item>
  </channel>
</rss>

