前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Python实现对Tomcat的监控

Python实现对Tomcat的监控

作者头像
py3study
发布2020-01-10 16:33:41
9250
发布2020-01-10 16:33:41
举报
文章被收录于专栏:python3

Python实现对Tomcat的监控

最近发现tomcat经常会僵死。而PS查看进程的时候进程还在。但不提供服务了。程序的功能:定期对tomcat服务器发送指命,如果得到响应,则服务器正常,否则异常,同时发邮件给相关人员。

代码语言:javascript
复制
 #! /usr/bin/env python
 # -*- coding: gb2312 -*-
 import socket,time
 import re #正则包
 import ElementTree as ET
 import ConfigParser
 import base64,time,smtplib
 from email.MIMEText import MIMEText
 from email.MIMEMultipart import MIMEMultipart

 #import xml.etree.ElementTree as ET
 def WriteLog(filename,tmpstr):
 
   time_str =time.strftime("%Y-%m-%d %H:%M:%S",time.localtime())
     logstr =str(tmpstr) + '\n'
     f =open(filename,"a")
    f.write(logstr)
    f.close()
 def ReWriteLog(filename,tmpstr): #用写模式找开文件
     time_str =time.strftime("%Y-%m-%d %H:%M:%S",time.localtime())
     logstr =str(tmpstr) + '\n'
     f =open(filename,"w")
    f.write(logstr)
    f.close()
 def getMailConfig(configFile):
    coms=[]
     Config =ConfigParser.ConfigParser()
    Config.read(configFile)
     host =Config.get("FROM","HOST")
     user =Config.get("FROM","USERNAME")
     subject =Config.get("FROM","SUBJECT")
     pwd =base64.b64decode(Config.get("FROM","PASSWORD"))
     commands =Config.items("TO")
     for com incommands:
        coms.append(com[1])
     returnhost,user,pwd,subject,coms
 def SendMail(configFile,sendfile,logFile):
    host,user,pwd,subject,coms=getMailConfig(configFile)
    _tos=""
     for _to incoms:
        _tos = _tos + _to + ";"
     msg =MIMEMultipart()
       # att = MIMEText("test mail")
     att =MIMEText(open(sendfile,'rb').read(),'base64','gb2312')
 #   att["Content-Type"] ='application/octet-stream'
    att["Content-Disposition"]='attachment;filename="'+sendfile+'"'
    #   msg.attach(att)
    #   msg['to']=coms
    msg['from']=user
    msg['to']=_tos
    msg['subject']=subject+" "+time.strftime("%Y-%m-%d",time.localtime())
    msg.attach(att)
     try:
        smtp_svr=smtplib.SMTP()
        smtp_svr.connect(host,"25")
     except(smtplib.SMTPConnectError,socket.error):
        print "connect error"
        WriteLog(logFile,"connect error")
     try:
        smtp_svr.login(user,pwd)
     exceptsmtplib.SMTPAuthenticationError:
        print "authentication error\n"
        WriteLog(logFile,"authentication error")
     try:
        smtp_svr.sendmail(user,coms,msg.as_string())
     except(smtplib.SMTPRecipientsRefused,smtplib.SMTPDataError,smtplib.SMTPServerDisconnected):
        print "send mail error"
        WriteLog(logFile,"send mail error")
    smtp_svr.close
 
 defSendMailForHtml(configFile,tableContent,mailtitle,logFile):
    host,user,pwd,subject,coms=getMailConfig(configFile)
    _tos=""
     for _to incoms:
        _tos = _tos + _to + ";"
     #
 #    smtp_server= smtplib.SMTP(smtp_host)  
     msg =MIMEMultipart()
    html='<html><body>'+tableContent+'</body></html>' 
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2019/08/28 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Python实现对Tomcat的监控
相关产品与服务
云服务器
云服务器(Cloud Virtual Machine,CVM)提供安全可靠的弹性计算服务。 您可以实时扩展或缩减计算资源,适应变化的业务需求,并只需按实际使用的资源计费。使用 CVM 可以极大降低您的软硬件采购成本,简化 IT 运维工作。
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档