亲,以下就是关于(Linux系统监控Mogilefs存储节点的操作方法(图)),由“路由器之家”整理!
原标题:"Linux系统监控Mogilefs存储节点的操作方法"相关电脑问题教程分享。 – 来源:路由器之家。
众所周知,在Linux系统中Mogilefs 分布式存储系统可以用来存储图片,而且还会自动给图片备份。一般来讲Mogilefs 都比较稳定,但是如果出现了问题,图片就会显示不正常。那么如何解决这个问题呢?下面,就跟随路由器之家小编一起来看看Linux系统监控Mogilefs存储节点的操作方法。
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系统监控Mogilefs存储节点的操作方法
以上就是关于-常见问题-(Linux系统监控Mogilefs存储节点的操作方法(图))的教程!
本文来自投稿,不代表路由百科立场,如若转载,请注明出处:https://www.qh4321.com/116315.html