5

What tools do you use to monitor hardware RAID Status on Dell Poweredge 2950 (II and III, perc)? I run Debian. I've used a "debianized" version of dell openmanage in the past. I'm looking for a lightweight solution and (if possible) something "debian packaged".

Any ideas are welcome!

Thanks

4 Answers 4

1

As womble said, grab the OMSA packages from that blog post and use NRPE to call check_openmanage.

This'll give you good coverage over all the Dell hardware in your box (including the RAID array(s))

1

We run OMSA on all our Dell servers, and then have NRPE plugins to query that information to generate results for Nagios to process, graph, alert on, etc.

2
  • I can't find that package, except on the Dell website. Perhaps you know what the name of the package is? Commented Aug 12, 2009 at 23:50
  • What package? OMSA? Someone's packaged it for Debian at sadsoftware.blogspot.com/2008/08/… The rest is all open source and already in Debian. Commented Aug 13, 2009 at 0:35
1

not debian packaged..

i use ipmi over lan to read drac logs. i run:

ipmitool -L USER -H 10.1.2.3 -U ipmi_username -P password sel elist last 10 

this gives me last 10 log messages. if there is something there - probably strange stuff has occurred [ memory errors, redundant psu died etc ]

i run locally MegaCLI to query for raid status. it requires root privileges so i have cron job that executes:

./MegaCli -AdpAllInfo -aALL|grep -v "Current Time" >> current.txt ./MegaCli -PDList -aALL >> current.txt ./MegaCli AdpBbuCmd -aAll|grep "Aalarm"|grep -v "^Remaining" >> current.txt ./MegaCli -LDInfo -Lall -aALL >> current.txt 

while nagios nrpe plugin just compares current.txt with expected.txt and alerts if they dont match.

you can google for megacli or download it from lsi webpage.

0

OMSA works with debian, with a bit of tweaking, and it's not that heavy

on the other hand you can set up linux native tools, or the additional packages like nagios, munin etc.

2
  • not that heavy? the .deb is 90Mb! You mentioned native tools - what are there? Commented Nov 20, 2012 at 16:26
  • by heavy I meant the amount of tweaking required, not the file size. And by native I mean nagios plugins and scripts utilizing megacli Commented Nov 20, 2012 at 17:57

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.