<?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 Array Conf. in Disk Enclosures</title>
    <link>https://community.hpe.com/t5/disk-enclosures/disk-array-conf/m-p/2726440#M4847</link>
    <description>Ok lets do it .. (100GB and 40GB LUNs)&lt;BR /&gt;# arraydsp -i&lt;BR /&gt;==&amp;gt; Take note of the array serial number or id, you'll need it in subsequent command. Assuming the id is 0000001244DD.&lt;BR /&gt;# arraydsp -a 0000001244DD |more&lt;BR /&gt;==&amp;gt; you'll get something like this ..&lt;BR /&gt;Vendor ID           = HP&lt;BR /&gt;Product ID          = C5447A&lt;BR /&gt;Array serial number = 0000001244DD&lt;BR /&gt;------------------------------------&lt;BR /&gt;--- Disk space usage --------------------&lt;BR /&gt;Total physical               = 208397 MB Allocated to LUNs            =      0 MB&lt;BR /&gt;Used as Active Hot spare     =  34732 MB&lt;BR /&gt;Used by non-included disks   =      0 MB&lt;BR /&gt;Used for Redundancy          =  43356 MB&lt;BR /&gt;Unallocated (avail for LUNs) = 130309 MB&lt;BR /&gt;-----------------------------------------&lt;BR /&gt;..........&lt;BR /&gt;&lt;BR /&gt;Since no LUNs are created yet the "Allocated to LUNs" row shows 0 MB. The "unallocated(avail for LUNS)" is the space you can use to create your LUNS. Also scroll down and double check that the controller X and Y have different SCSI address (usually 0&amp;amp;1).&lt;BR /&gt;&lt;BR /&gt;To create your LUN..&lt;BR /&gt;&lt;BR /&gt;# arraycfg -L 0 -a 100G 0000001244DD&lt;BR /&gt;==&amp;gt; create 1st 100GB LUN id=0&lt;BR /&gt;# arraydsp -a 0000001244DD |more&lt;BR /&gt;==&amp;gt; check it ..&lt;BR /&gt;# arraycfg -L 1 -a 40G 0000001244DDD&lt;BR /&gt;==&amp;gt; create 2nd 40GB LUN, before you do this make sure your have enough space left in "unallocated (avail for LUN)" after the creation of your 1st LUN. Obviously the example about shows that I don't have enough for a 40GB LUN.&lt;BR /&gt;# arraydsp -a 0000001244DD |more&lt;BR /&gt;==&amp;gt; check again ..&lt;BR /&gt;&lt;BR /&gt;That's it !&lt;BR /&gt;    &lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 17 May 2002 15:40:47 GMT</pubDate>
    <dc:creator>S.K. Chan</dc:creator>
    <dc:date>2002-05-17T15:40:47Z</dc:date>
    <item>
      <title>Disk Array Conf.</title>
      <link>https://community.hpe.com/t5/disk-enclosures/disk-array-conf/m-p/2726437#M4844</link>
      <description>Hi Masters,&lt;BR /&gt;  I have AutoRaid 12H with 12*18Gb Disk and Two Controller. I want two create TWO LUN's each of 100Gb and 40Gb, so that i have two VG's for two different oracle applications.&lt;BR /&gt;Hot Spare--&amp;gt; Enable.&lt;BR /&gt;So what will be the action plan to configure the AutoRaid as per above requirement please&lt;BR /&gt;explain with OS command sequence.&lt;BR /&gt;&lt;BR /&gt;If more information is required, will be provided.&lt;BR /&gt;Thanks in Adv.</description>
      <pubDate>Fri, 17 May 2002 13:14:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/disk-enclosures/disk-array-conf/m-p/2726437#M4844</guid>
      <dc:creator>Ash_4</dc:creator>
      <dc:date>2002-05-17T13:14:23Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Array Conf.</title>
      <link>https://community.hpe.com/t5/disk-enclosures/disk-array-conf/m-p/2726438#M4845</link>
      <description>I assume you know the LUN creation part using arraymgr/arraydsp/arraycfg. After you've created the 2 LUNS (100GB &amp;amp; 40GB), you should be able to see those device files with ioscan.&lt;BR /&gt;# ioscan -fnC disk&lt;BR /&gt;If no device files are created, run ..&lt;BR /&gt;# insf -e&lt;BR /&gt;With 2 LUNs you'll get 4 device files (a pair each), for example ..&lt;BR /&gt;c4t1d0&lt;BR /&gt;c4t2d0&lt;BR /&gt;c4t1d1&lt;BR /&gt;c4t2d0&lt;BR /&gt;The above will be the case if you got one conection from CPU to the controller and then daisy chained the 1st controller to the other. If you got 2 connection going to the controller, one on each controller then the device files would look like ..&lt;BR /&gt;c4t1d0&lt;BR /&gt;c5t2d0&lt;BR /&gt;c4t1d1&lt;BR /&gt;c5t2d1&lt;BR /&gt;The "c" identifies the SCSI adapter on your CPU, the "t" identifies the controller of the array and the "d" would be the LUN id.&lt;BR /&gt;I'll assume you got a pair of SCSI cable going to the array. So the paired up devices would be..&lt;BR /&gt;c4t1d0 and c5t2d0&lt;BR /&gt;c4t1d1 and c5t2d1&lt;BR /&gt;Now to create your VG..&lt;BR /&gt;# pvcreate /dev/rdsk/c4t1d0&lt;BR /&gt;# mkdir /dev/vg01&lt;BR /&gt;# mknod /dev/vg01/group c 64 0x010000&lt;BR /&gt;==&amp;gt; minor number 0x010000 must be unique&lt;BR /&gt;# vgcreate vg01 /dev/dsk/c4t1d0 /dev/dsk/c5t2d0&lt;BR /&gt;==&amp;gt; c4t1d0 is primary and c5t2d0 is secondary&lt;BR /&gt;# vgdisplay -v vg01&lt;BR /&gt;==&amp;gt; check status (notice the "alt" path for c5t2d0)&lt;BR /&gt;To create you LV (example..)&lt;BR /&gt;# lvcreate -L 10000 -n lvol1 vg01&lt;BR /&gt;==&amp;gt; creating a 10GB LV named lvol1 in vg01&lt;BR /&gt;# newfs -F vxfs /dev/vg01/rlvol1&lt;BR /&gt;# mkdir /test&lt;BR /&gt;# mount /dev/vg01/lvol1 /test&lt;BR /&gt;# vi /etc/fstab&lt;BR /&gt;==&amp;gt; update fstab file accordingly to makesure it mounts everytime system reboot.&lt;BR /&gt;Test the mount from /etc/fstab&lt;BR /&gt;# cd /&lt;BR /&gt;# umount /test&lt;BR /&gt;# mount -a&lt;BR /&gt;# bdf&lt;BR /&gt;&lt;BR /&gt;All set !&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 17 May 2002 13:37:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/disk-enclosures/disk-array-conf/m-p/2726438#M4845</guid>
      <dc:creator>S.K. Chan</dc:creator>
      <dc:date>2002-05-17T13:37:17Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Array Conf.</title>
      <link>https://community.hpe.com/t5/disk-enclosures/disk-array-conf/m-p/2726439#M4846</link>
      <description>Hi S.K.Chan,&lt;BR /&gt;          I want it right  from creation of LUN's.&lt;BR /&gt;Thanks.</description>
      <pubDate>Fri, 17 May 2002 13:56:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/disk-enclosures/disk-array-conf/m-p/2726439#M4846</guid>
      <dc:creator>Ash_4</dc:creator>
      <dc:date>2002-05-17T13:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Array Conf.</title>
      <link>https://community.hpe.com/t5/disk-enclosures/disk-array-conf/m-p/2726440#M4847</link>
      <description>Ok lets do it .. (100GB and 40GB LUNs)&lt;BR /&gt;# arraydsp -i&lt;BR /&gt;==&amp;gt; Take note of the array serial number or id, you'll need it in subsequent command. Assuming the id is 0000001244DD.&lt;BR /&gt;# arraydsp -a 0000001244DD |more&lt;BR /&gt;==&amp;gt; you'll get something like this ..&lt;BR /&gt;Vendor ID           = HP&lt;BR /&gt;Product ID          = C5447A&lt;BR /&gt;Array serial number = 0000001244DD&lt;BR /&gt;------------------------------------&lt;BR /&gt;--- Disk space usage --------------------&lt;BR /&gt;Total physical               = 208397 MB Allocated to LUNs            =      0 MB&lt;BR /&gt;Used as Active Hot spare     =  34732 MB&lt;BR /&gt;Used by non-included disks   =      0 MB&lt;BR /&gt;Used for Redundancy          =  43356 MB&lt;BR /&gt;Unallocated (avail for LUNs) = 130309 MB&lt;BR /&gt;-----------------------------------------&lt;BR /&gt;..........&lt;BR /&gt;&lt;BR /&gt;Since no LUNs are created yet the "Allocated to LUNs" row shows 0 MB. The "unallocated(avail for LUNS)" is the space you can use to create your LUNS. Also scroll down and double check that the controller X and Y have different SCSI address (usually 0&amp;amp;1).&lt;BR /&gt;&lt;BR /&gt;To create your LUN..&lt;BR /&gt;&lt;BR /&gt;# arraycfg -L 0 -a 100G 0000001244DD&lt;BR /&gt;==&amp;gt; create 1st 100GB LUN id=0&lt;BR /&gt;# arraydsp -a 0000001244DD |more&lt;BR /&gt;==&amp;gt; check it ..&lt;BR /&gt;# arraycfg -L 1 -a 40G 0000001244DDD&lt;BR /&gt;==&amp;gt; create 2nd 40GB LUN, before you do this make sure your have enough space left in "unallocated (avail for LUN)" after the creation of your 1st LUN. Obviously the example about shows that I don't have enough for a 40GB LUN.&lt;BR /&gt;# arraydsp -a 0000001244DD |more&lt;BR /&gt;==&amp;gt; check again ..&lt;BR /&gt;&lt;BR /&gt;That's it !&lt;BR /&gt;    &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 17 May 2002 15:40:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/disk-enclosures/disk-array-conf/m-p/2726440#M4847</guid>
      <dc:creator>S.K. Chan</dc:creator>
      <dc:date>2002-05-17T15:40:47Z</dc:date>
    </item>
  </channel>
</rss>

