<?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 ask? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/mirror-ask/m-p/2907288#M633985</link>
    <description>Castro,&lt;BR /&gt;&lt;BR /&gt;I am considering that you have multiple logical volumes spread over these two disks listed above.&lt;BR /&gt;&lt;BR /&gt;You will need two different disks to mirror your logical volumes to.&lt;BR /&gt;&lt;BR /&gt;lvextend -m1 /dev/vg00/lvol7 /dev/dsk/newdisk&lt;BR /&gt;&lt;BR /&gt;See attached doc&lt;BR /&gt;&lt;BR /&gt;-Anil</description>
    <pubDate>Tue, 18 Feb 2003 18:20:02 GMT</pubDate>
    <dc:creator>Anil C. Sedha</dc:creator>
    <dc:date>2003-02-18T18:20:02Z</dc:date>
    <item>
      <title>Mirror ask?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mirror-ask/m-p/2907282#M633979</link>
      <description>I have several logical volumes in 2 disk &lt;BR /&gt;&lt;BR /&gt;How can I do the mirror&lt;BR /&gt;LV Name /dev/vg00/lvol7 &lt;BR /&gt;VG Name /dev/vg00 &lt;BR /&gt;--- Distribution of logical volume --- &lt;BR /&gt;PV Name LE on PV PE on PV &lt;BR /&gt;/dev/dsk/c9t5d0 160 160 &lt;BR /&gt;/dev/dsk/c9t9d0 140 140 &lt;BR /&gt;&lt;BR /&gt;When I do the lvextend -m 1 &lt;BR /&gt;what disk is? &lt;BR /&gt;Thnaks &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 18 Feb 2003 17:52:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mirror-ask/m-p/2907282#M633979</guid>
      <dc:creator>castro_2</dc:creator>
      <dc:date>2003-02-18T17:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: Mirror ask?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mirror-ask/m-p/2907283#M633980</link>
      <description>Without specifying anything, the lvextend command will allocate space where it sees fit, maintaining the allocation policy (default policy will not allow the mirror copy to be on the same disk as the original).&lt;BR /&gt;&lt;BR /&gt;lvextend -m 1 /dev/vg01/lvol5&lt;BR /&gt;&lt;BR /&gt;If you wish to, you can also specify which physical disk you want to allocate the mirror copy on.&lt;BR /&gt;&lt;BR /&gt;lvextend -m 1 /dev/vg00/lvol3 /dev/dsk/c0t3d0&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Tue, 18 Feb 2003 18:00:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mirror-ask/m-p/2907283#M633980</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2003-02-18T18:00:51Z</dc:date>
    </item>
    <item>
      <title>Re: Mirror ask?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mirror-ask/m-p/2907284#M633981</link>
      <description>Hi Castro: &lt;BR /&gt;&lt;BR /&gt;When you do the 'lvextend -m...' *all* extents of the logical volume on *all* physical volumes on which it resides are extended. Remember that mirroring is at the *logical volume* level. You can limit the mirror to a particular physical volume(s) by specifying the pv_path(es). Otherwise, all physical volumes are candidates for the mirror extents, within the constraints of the 'strict' allocation policy (which by default, prevents allocating mirror extents on the same physical volume as corresponding extents already exist). &lt;BR /&gt;&lt;BR /&gt;See the man pages for 'lvcreate' and 'lvextend' for more information. &lt;BR /&gt;&lt;BR /&gt;Regards! &lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Tue, 18 Feb 2003 18:01:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mirror-ask/m-p/2907284#M633981</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2003-02-18T18:01:21Z</dc:date>
    </item>
    <item>
      <title>Re: Mirror ask?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mirror-ask/m-p/2907285#M633982</link>
      <description>Actually, to phrase it more simply, it doesn't matter where the source is or how it's laid out.  The logical volume (lvol7) will be mirrored, in it's entirety, on either the volume you specify or whatever volume is available if you don't specify.&lt;BR /&gt;&lt;BR /&gt;Hope that helps,&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Tue, 18 Feb 2003 18:05:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mirror-ask/m-p/2907285#M633982</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2003-02-18T18:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: Mirror ask?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mirror-ask/m-p/2907286#M633983</link>
      <description>You can mirror to a specific disk (say c1t2d0) by running ..&lt;BR /&gt;# lvextend -m 1 /dev/vg00/lvol7 /dev/dsk/c1t2d0&lt;BR /&gt;otherwise (without specifying the disk) it'll mirror to any available PV extents which are not on the same PV.&lt;BR /&gt;To establish a "clean mirror" it's best of you can setup PVG and enable the PVG-strict allocation. I usually do that if I have more than 2 disks in my vg00.</description>
      <pubDate>Tue, 18 Feb 2003 18:05:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mirror-ask/m-p/2907286#M633983</guid>
      <dc:creator>S.K. Chan</dc:creator>
      <dc:date>2003-02-18T18:05:49Z</dc:date>
    </item>
    <item>
      <title>Re: Mirror ask?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mirror-ask/m-p/2907287#M633984</link>
      <description>Castro,&lt;BR /&gt;&lt;BR /&gt;I am considering that you have multiple logical volumes spread over these two disks listed above.&lt;BR /&gt;&lt;BR /&gt;You will need two different disks to mirror your logical volumes to.&lt;BR /&gt;&lt;BR /&gt;lvextend -m1 /dev/vg00/lvol7 /dev/dsk/newdisk&lt;BR /&gt;&lt;BR /&gt;See attache doc&lt;BR /&gt;&lt;BR /&gt;-Anil</description>
      <pubDate>Tue, 18 Feb 2003 18:19:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mirror-ask/m-p/2907287#M633984</guid>
      <dc:creator>Anil C. Sedha</dc:creator>
      <dc:date>2003-02-18T18:19:57Z</dc:date>
    </item>
    <item>
      <title>Re: Mirror ask?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mirror-ask/m-p/2907288#M633985</link>
      <description>Castro,&lt;BR /&gt;&lt;BR /&gt;I am considering that you have multiple logical volumes spread over these two disks listed above.&lt;BR /&gt;&lt;BR /&gt;You will need two different disks to mirror your logical volumes to.&lt;BR /&gt;&lt;BR /&gt;lvextend -m1 /dev/vg00/lvol7 /dev/dsk/newdisk&lt;BR /&gt;&lt;BR /&gt;See attached doc&lt;BR /&gt;&lt;BR /&gt;-Anil</description>
      <pubDate>Tue, 18 Feb 2003 18:20:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mirror-ask/m-p/2907288#M633985</guid>
      <dc:creator>Anil C. Sedha</dc:creator>
      <dc:date>2003-02-18T18:20:02Z</dc:date>
    </item>
  </channel>
</rss>

