码迷,mamicode.com
首页 > 编程语言 > 详细

Python 监控nginx服务是否正常

时间:2016-12-20 20:28:29      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:pop   ftime   import   art   python   cmd   exception   start   lines   

Python 监控nginx服务是否正常

#!/usr/bin/env python
import os, sys, time
from time import strftime

while True:
try:
ret = os.popen(ps -C nginx -o pid,cmd).readlines()
if len(ret) <2:
os.system("service nginx start")
sys.exit(0)

except Exception,ex:
print strftime("%Y-%m-%r %H:%M")
sys.exit(0)

 

Python 监控nginx服务是否正常

标签:pop   ftime   import   art   python   cmd   exception   start   lines   

原文地址:http://www.cnblogs.com/liuyansheng/p/6203751.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!