系统之家 - 系统光盘下载网站!

当前位置:系统之家 > 系统教程 > Linux监控Mogilefs存储节点

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

时间:2015-09-23 14:28:20 作者:zhijie 来源:系统之家 1. 扫描二维码随时看资讯 2. 请使用手机浏览器访问: https://m.xitongzhijia.net/xtjc/20150923/58428.html 手机查看 评论

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

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

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

#!/usr/bin/env python
# Check mogilefs mogilestorage
# Blog https://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进行监控,这样就不至于在发生问题之后才能发现问题,而是把错误扼杀在萌芽之中。

发表评论

0

没有更多评论了

评论就这些咯,让大家也知道你的独特见解

立即评论

以上留言仅代表用户个人观点,不代表系统之家立场

其他版本软件

热门教程

人气教程排行

Linux系统推荐

扫码关注
扫码关注

扫码关注 官方交流群 软件收录