<?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: Problems to create 1 RAID in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-to-create-1-raid/m-p/4520663#M651491</link>
    <description>You chose either stripe or mirror. Why you need both?? Are those internal disks or protected disks from external arrays?</description>
    <pubDate>Sun, 25 Oct 2009 09:17:50 GMT</pubDate>
    <dc:creator>skt_skt</dc:creator>
    <dc:date>2009-10-25T09:17:50Z</dc:date>
    <item>
      <title>Problems to create 1 RAID</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-to-create-1-raid/m-p/4520662#M651490</link>
      <description>Hi&lt;BR /&gt;Running Hp-Ux 11.11 I have a problem, I can not create RAID/mirror.&lt;BR /&gt;I Running the following steps:&lt;BR /&gt;pvcreate -f /dev/rdsk/c0t8d0&lt;BR /&gt;mkdir /dev/vg01&lt;BR /&gt;mknod /dev/vg01/group c 64 0x010000&lt;BR /&gt;vgcreate -e 4341 -s 4 /dev/vg01 /dev/dsk/c0t8d0&lt;BR /&gt;lvcreate -l 4341 -i 2 -I 64 /dev/vg01&lt;BR /&gt;pvcreate -f /dev/rdsk/c0t12d0&lt;BR /&gt;vgextend /dev/vg01 /dev/dsk/c0t12d0&lt;BR /&gt;lvextend -m 1 /dev/vg01/lvol1 /dev/dsk/c0t8d0 /dev/dsk/c0t12d0.&lt;BR /&gt;&lt;BR /&gt;After this commands the following error message appears: Striped mirrors are not supported. To enable mirroring options (-m, -M, -c),&lt;BR /&gt;do not specify the striping options (-i, -I) when creating logical volumes.&lt;BR /&gt;I need help.&lt;BR /&gt;&lt;BR /&gt;Thank you</description>
      <pubDate>Sun, 25 Oct 2009 08:48:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-to-create-1-raid/m-p/4520662#M651490</guid>
      <dc:creator>Pedro-beginner HP-UX</dc:creator>
      <dc:date>2009-10-25T08:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: Problems to create 1 RAID</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-to-create-1-raid/m-p/4520663#M651491</link>
      <description>You chose either stripe or mirror. Why you need both?? Are those internal disks or protected disks from external arrays?</description>
      <pubDate>Sun, 25 Oct 2009 09:17:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-to-create-1-raid/m-p/4520663#M651491</guid>
      <dc:creator>skt_skt</dc:creator>
      <dc:date>2009-10-25T09:17:50Z</dc:date>
    </item>
    <item>
      <title>Re: Problems to create 1 RAID</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-to-create-1-raid/m-p/4520664#M651492</link>
      <description>The disks are external and I believe that from external arrays is not protected.&lt;BR /&gt;I need stripe, Are incorrect the commands that I executed?</description>
      <pubDate>Sun, 25 Oct 2009 10:17:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-to-create-1-raid/m-p/4520664#M651492</guid>
      <dc:creator>Pedro-beginner HP-UX</dc:creator>
      <dc:date>2009-10-25T10:17:01Z</dc:date>
    </item>
    <item>
      <title>Re: Problems to create 1 RAID</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-to-create-1-raid/m-p/4520665#M651493</link>
      <description>The message says all:&lt;BR /&gt;&lt;BR /&gt;Striped mirrors are not supported.</description>
      <pubDate>Sun, 25 Oct 2009 12:24:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-to-create-1-raid/m-p/4520665#M651493</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2009-10-25T12:24:01Z</dc:date>
    </item>
    <item>
      <title>Re: Problems to create 1 RAID</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-to-create-1-raid/m-p/4520666#M651494</link>
      <description>You can do this:&lt;BR /&gt;&lt;BR /&gt;lvcreate -l 4341 -i 2 -I 64 /dev/vg01&lt;BR /&gt;&lt;BR /&gt;OR you can do this:&lt;BR /&gt;&lt;BR /&gt;lvextend -m 1 /dev/vg01/lvol1 /dev/dsk/c0t8d0 /dev/dsk/c0t12d0.&lt;BR /&gt;&lt;BR /&gt;You can NOT do both.&lt;BR /&gt;&lt;BR /&gt;I would do:&lt;BR /&gt;&lt;BR /&gt;pvcreate -f /dev/rdsk/c0t8d0&lt;BR /&gt;pvcreate -f /dev/rdsk/c0t12d0&lt;BR /&gt;vgcreate -e 4341 -s 4 /dev/vg01 /dev/dsk/c0t8d0 /dev/dsk/c0t12d0&lt;BR /&gt;lvcreate -l 4341 /dev/vg01&lt;BR /&gt;lvextend -m 1 /dev/vg01/lvol1 /dev/dsk/c0t12d0&lt;BR /&gt;&lt;BR /&gt;Now you should have an LV that is mirrored between the 2 disks.</description>
      <pubDate>Sun, 25 Oct 2009 12:31:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-to-create-1-raid/m-p/4520666#M651494</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2009-10-25T12:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: Problems to create 1 RAID</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-to-create-1-raid/m-p/4520667#M651495</link>
      <description>Hi&lt;BR /&gt;I have executed the sentences that Patric has told me and it has worked&lt;BR /&gt;&lt;BR /&gt;Thank you</description>
      <pubDate>Tue, 27 Oct 2009 09:06:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-to-create-1-raid/m-p/4520667#M651495</guid>
      <dc:creator>Pedro-beginner HP-UX</dc:creator>
      <dc:date>2009-10-27T09:06:12Z</dc:date>
    </item>
  </channel>
</rss>

