User account menu

  • Log in
BXTra.net

Breadcrumb

  • Home
  • Articles
  • Dell Perc6/i RAID Monitoring Script using MegaCli (LSI) on CentOS 5.2 - 64 bits

Dell Perc6/i RAID Monitoring Script using MegaCli (LSI) on CentOS 5.2 - 64 bits

By BXTra | 11:46 PM PDT, Mon September 15, 2008
Computer Hardware
CentOS
RAID

I got a Dell Perc6/i Integrated RAID card a few days ago. By using it with CentOS 5.2 64 bits without GUI, I'm looking the way to monitor RAID status. I then, found that I can use MegaCLI from LSI to do the task. (Dell Perc6/i uses LSI Chip)

First, get MegaCLI from LSI website -> MegaCLI 2.00.11 for Linux

Unzip it, and install it by RPM. Files will place at /opt/MegaRAID/MegaCli. However, since I use 64 bits version, the file I got is MegaCli64. (32 bits OS will get MegaCli instead.

I, then, followed what said on this website (Most information came from that website.)

1. Created a file called "analysis.awk" in the /opt/MegaRAID/MegaCli directory with the following contents:

# This is a little AWK program that interprets MegaCLI output

    /Device Id/ { counter += 1; device[counter] = $3 }
    /Firmware state/ { state_drive[counter] = $3 }
    /Inquiry/ { name_drive[counter] = $3 " " $4 " " $5 " " $6 }
    END {
    for (i=1; i<=counter; i+=1) printf ( "Device %02d (%s) status is: %s \n", device[i], name_drive[i], state_drive[i]); }

2. Tested by run the command : ./MegaCli64 -PDList -aALL | awk -f analysis.awk

[root@xxxxx MegaCli]# ./MegaCli64 -PDList -aALL | awk -f analysis.awk
Device 00 (ATA ST3xxxxxxxx Sxxx 5xxxxx) status is: Online
Device 01 (ATA ST3xxxxxxxx Sxxx 5xxxxx) status is: Online

3. Create a file raidstatus in /etc/cron.hourly. Put below script in it :

/opt/MegaRAID/MegaCli/MegaCli64 -PdList -aALL | awk -f /opt/MegaRAID/MegaCli/analysis.awk | grep -qEv "*: Online" > /dev/null && echo "Warning: RAID status no longer optimal"

4. Run below command to make the file executable by all users.

chmod a+x /etc/cron.hourly/raidstatus

5. Check where the e-mail notification goes to in CRONTAB. Check this file -> /etc/crontab

SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
HOME=/

# run-parts
01 * * * * root run-parts /etc/cron.hourly
02 4 * * * root run-parts /etc/cron.daily
22 4 * * 0 root run-parts /etc/cron.weekly
42 4 1 * * root run-parts /etc/cron.monthly

I didn't change anything in CRONTAB. Instead, I changed that in /etc/aliases file. Specify root : aaa@bbb.com in there. So, that all mail to root will go to aaa@bbb.com

There is no e-mail notification if you run cron task (run-parts /etc/cron.hourly) by yourself. So, you need to wait for CRON to run automatically and you will get an E-mail.

Below are command that maybe useful :

Command to list Adapter Information :

/opt/MegaRAID/MegaCli/MegaCli64 -AdpAllInfo -aAll

Command to List all Logical Drives :

/opt/MegaRAID/MegaCli/MegaCli64 -LDInfo -LALL -aAll

Command to list all Physical Information :

/opt/MegaRAID/MegaCli/MegaCli64 -PDList -aAll

To check if cron works, run command :

run-parts /etc/cron.hourly
About text formats
  • No HTML tags allowed.
  • Web page addresses and email addresses turn into links automatically.
  • Lines and paragraphs break automatically.

Anonymous

16 years 1 month ago

Permalink

thy

thanks for your good article!
  • Reply

Anonymous

16 years 1 month ago

Permalink

Merci !

As I said in French, Thank You, very usefull.
  • Reply

Anonymous

16 years ago

Permalink

NEW LINK for the latest MegaCLI tool

Many thanks to the original poster... you are a lifesaver The link to MegaCLI is dead, but you can find old versions of MegaCLI on LSI's US website... but even better... you can find newest versions of MegaCLI on the Japanese website: http://www.lsi.jp/storage_home/products_home/internal_raid/megaraid_sas/value_line/megaraid_sas_8704em2/index.html
  • Reply

Anonymous

16 years ago

Permalink

For OpenFiler Users on Dell2950 with Perc6/i

since the MegaCLI at LSI only comes as an .rpm... this is tough for OpenFiler users (with no rpm or alien on the system).. and for some reason the 2.00 version wouldnt work for me.. but 4.00.11 did! Install Alien: wget http://ftp.de.debian.org/debian/pool/main/a/alien/alien_8.72.tar.gz tar vzxf alien_8.72.tar.gz cd alien perl Makefile.PL make make install Convert the .rpm: /usr/bin/alien --to-tgz /tmp/MegaCli-4.00.11-1.i386.rpm Warning: Skipping conversion of scripts in package MegaCli: postinst postrm Warning: Use the --scripts parameter to include the scripts. cpio: warning: skipped 2167399 bytes of junk MegaCli-4.00.11.tgz generated Extract the *single* MegaCli file (you dont need all the /opt/Mega..blah blah directory structure).. I ran it from my home directory Note: I was NOT able to use MegaCLI64 even though Im on a 64-bit system with 64-bit flavor of openfiler... it generated segmentation faults everytime chmod 755 MegaCli ./MegaCli -h Enjoy! This burned up 1 1/2 days for me... so thought I would pass it along!
  • Reply

Anonymous

15 years 6 months ago

Permalink

Thanks!!

It's very helpful to me. Thanks again!! :)
  • Reply

dave

14 years ago

Permalink

thanks!

I loved it. Thanks a much!
  • Reply

Ciprian Pantea

13 years 10 months ago

Permalink

Thanks!

Lovely, with a little bit of tweaking I made it to do what I want, thanks!!!
  • Reply

Nick

12 years 11 months ago

Permalink

Megacli64

Hey guys Just wondering if anyone could point me to the download of megacli64, I've tried the above links, but dont seem to ever find it. I need to do some raid health monitoring over Xen's paravirtualised driver layer, and this is the only way to connect with MSM. If someone could pass me a link, I'd appreciate it. Thanks, Nick
  • Reply

BXTra

12 years 11 months ago

Permalink

In reply to Megacli64 by Nick

Try http://www.lsi.com

Try http://www.lsi.com/support/Pages/Download-Results.aspx?productcode=P00064&assettype=Software&component=Storage%20Component&productfamily=RAID%20Controllers&productname=MegaRAID%20SAS%208888ELP Or pick the one for the card you use from http://www.lsi.com/support/Pages/download-search.aspx MegaCLI usually located in "Miscellaneous" topic (Asset Type). I still saw version 8.02.21 which just released on Jun 7, 2012.
  • Reply

Essi

12 years 10 months ago

Permalink

Thanks

It is GREAT, helpful
  • Reply

andrea

12 years 10 months ago

Permalink

help

i have a ibm server 4252 and i find the megacli over ibm site but don't know hoe istall it. i ask my assistance and the cost fos it is 250 €. can you help me to installa it ? thanks
  • Reply

Joe Z

12 years 7 months ago

Permalink

Perfect, Works like a Charm

Perfect, Works like a Charm
  • Reply

ukw

12 years 2 months ago

Permalink

Extremely Helpful

Great article thanks - worked perfectly on DELL R320 series server with CentOS 6

Got the latest MegaCLI code from:
http://www.lsi.com/downloads/Public/MegaRAID%20Common%20Files/8.07.07_M…

Your examples were just what I needed - I owe you a beer (or two).

Thanks again!

  • Reply
  • Add new comment

  • Will the router get the Openvpn as a client option?
    6 years ago
  • cancellation
    6 years 1 month ago
  • Router ASUS RT-N12 D1 tomatoes passwort falsch
    7 years 8 months ago
  • WPS button = 30/30/30 hard reset button
    7 years 9 months ago
  • Save my day!
    8 years 3 months ago
  • How to
    8 years 6 months ago
  • Can i still access my modem (the one with the ISP provided)?
    8 years 6 months ago
  • A saving step!
    8 years 10 months ago
  • Problem with Asus n12e-c1
    8 years 11 months ago
  • don't use Hostgator
    9 years 2 months ago

© 2007 - 2023 BXTra.net. All Rights Reserved. 
Certain other content, photos and artwork displayed on BXTra.net are protected by copyright and are the property of their respective owners.

Privacy Policy