当前位置:Gxlcms > linux教程 > Linux系统如何监控Mogilefs存储节点

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

时间:2021-07-01 10:21:17 帮助过:10人阅读

  在Linux系统中Mogilefs 分布式存储系统可以用来存储图片,而且还会自动给图片备份。一般来讲Mogilefs 都比较稳定,但是如果出现了问题,图片就会显示不正常。本文就来教大家Linux系统如何监控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进行监控,这样就不至于在发生问题之后才能发现问题,而是把错误扼杀在萌芽之中。

人气教程排行