Changes between Version 32 and Version 33 of LSIMegaRAIDSAS


Ignore:
Timestamp:
12/22/08 18:01:17 (15 years ago)
Author:
Adam Cécile
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • LSIMegaRAIDSAS

    v32 v33  
    102102-- Disks informations
    103103-- ID | Model | Status | Warnings
     104
    104105
    105106a0e8s0 | SEAGATE ST3146854SS 136GiB | online
     
    250251==== Create a RAID6 array with megacli ====
    251252
     253Let's assume we have a server with two MegaRAID SAS cards.
     254The first one is already setup but we have just plugged a disk bays on the second card.
     255
     256List physical disks on second card (only print enclosure and slots numbers):
     257{{{
     258server:~# megacli -PDlist -a1 | grep -e '^Enclosure Device ID:' -e '^Slot Number:'
     259Enclosure Device ID: 0
     260Slot Number: 0
     261Enclosure Device ID: 0
     262Slot Number: 1
     263Enclosure Device ID: 0
     264Slot Number: 2
     265Enclosure Device ID: 0
     266Slot Number: 3
     267Enclosure Device ID: 0
     268Slot Number: 4
     269Enclosure Device ID: 0
     270Slot Number: 5
     271Enclosure Device ID: 0
     272Slot Number: 6
     273}}}
     274
     275Now we have all enclosure and slot number. Let's create the new array:
     276server:~# megacli -CfgLdAdd -r6 [0:0,0:1,0:2,0:3,0:4,0:5,0:6] -a1
     277
     278Adapter 1: Created VD 0
     279
     280Adapter 1: Configured the Adapter!!
     281
     282Exit Code: 0x00
     283
    252284=== 3.3.3. Periodic checks ===
    253285