Linux系统如何监控Mogilefs存储节点

Linux系统如何监控Mogilefs存储节点,第1张

Linux系统如何监控Mogilefs存储节点

  在Linux系统中Mogilefs 分布式存储系统可以用来存储图片,而且还会自动给图片备份。一般来讲Mogilefs 都比较稳定,但是如果出现了问题,图片就会显示不正常。本文就来教大家Linux系统如何监控Mogilefs存储节点。

  nagios自定义脚本可实现监控指定内容,试着用python写了一个监控mogilefs系统的脚本,当有存储节点无法连通的时候进行报警,这样随时处理掉。可保证图片系统的无故障运行:

#!/usr/bin/env python
# Check mogilefs mogilestorage
# Blog http://www.xitongzhijia.net/
# 2011-12-13
import os
import sys

hosts = ['192.168.1.51','192.168.1.52','192.168.1.53','192.168.1.54','192.168.1.55']
check="mogadm --trackers=localhost:6001 check |grep mogile |awk '{print $5}'"
values = os.popen(check).read()
i=0
for v in values.split('n'):
if v != 'OK' and v !='':
print "Critical mogielstorage%d,IP:%s is not ok" %(i+1,hosts[i])
sys.exit(1)
break;
i=i+1
print "OK every one is ok"
sys.exit(0)

  以上就是Linux利用Nagios脚本监控Mogilefs的方法了,只要实现对Mogilefs进行监控,这样就不至于在发生问题之后才能发现问题,而是把错误扼杀在萌芽之中。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5579547.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存