写了个监控nginx进程的Python脚本
程序员文章站
2022-04-08 17:33:22
复制代码 代码如下: #!/usr/bin/env python import os, sys, time while true: time.sleep(3) try: r...
复制代码 代码如下:
#!/usr/bin/env python
import os, sys, time
while true:
time.sleep(3)
try:
ret = os.popen('ps -c nginx -o pid,cmd').readlines()
if len(ret) < 2:
print "nginx process killed, restarting service in 3 seconds."
time.sleep(3)
os.system("service nginx restart")
except:
print "error", sys.exc_info()[1]
设置文件可执行属性,加入到/etc/rc.local,总算放心了。
这种方法还可以监控别的进程,我相信应该有现成的监控软件,但是我觉得写个脚本更方便。
上一篇: 如何写标题描述关键词
下一篇: 【朝花夕拾】设计模式之装饰器模式