shell脚本实现RAID状态监控
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-04-27
本文介绍的是监控dell服务器和hp服务器的raid状态.只要有坏盘现象便会发出报警邮件,以便及时处理,避免数据丢失等严重后果. 对于脚本中的hpacucli命令可以参考:http://hi.baidu.com/5651741/blog/item/9b8438fc80aed78ab801a001.html 对于脚本中的MegaCli 命令可以参考:http://hi.baidu.com/shinegun/blog/item/26c2c708f4b6d036e82488e0.html #!/bin/bash #For monitoring raid status of XXX. #Written on XXXX--Singles'' Day :) #Author:Levin.<findingcc@126.com> IP_Storage=`cat /home/admin/iplist` for i in $IP_Storage do ip=`echo $i|awk -F''--->'' ''{print $2}''` time=`date %F--%T` echo "$i--->$time" if [ $ip = "x.x.x.x" -o $ip = "x.x.x.x" ];then ssh $ip "MegaCli -AdpAllInfo -a0|grep "Degrade" MegaCli -AdpAllInfo -a0|grep "Failed Disks""|awk ''{if($NF!="0")print $0}'' else ssh $ip "hpacucli ctrl all show status"|sed -n ''/^$/d;/Slot/!p'' |awk ''{if($NF!="OK")print $0}'' fi done |tee /home/adminwxg/raid-status cd /home/admin/ num1=`grep -c . iplist` num2=`grep -c . raid-status` if [ "$num2" -gt "$num1" ];then mail -s "STORAGE RAID STATUS WRONG!!!" xxx@xx.com,xxx@xxx.com <raid-status fi exit 0 |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: RH253学习资料下载下一篇: 该添加点东西了
关于shell脚本实现RAID状态监控的所有评论