My first python script for work

來源:互聯網
上載者:User

標籤:cep   elf   pattern   進程   nbsp   shell   異常   pass   toad   

I write it yesterday to watch the NE process(rcpfd,cfgd) automatically, then i will write a window to implement it:

 

#! /usr/bin/env python
# -*- coding: UTF-8 -*-

import paramiko
import ssh
import os
import re
import time
#RCPD異常類
class RCPD_Exception(Exception):
def __init__(self,value):
self.value=value
def __str__(self):
return self.value

#CFGD異常類
class CFGD_Exception(Exception):
def __init__(self,value):
self.value=value
def __str__(self):
return self.value

#check進程的函數,進程stuck會報異常,每ss(s>1)秒check一次
def check(hostname,ss):
hostname=hostname
port = 22
username = ‘root‘
password = ‘root‘
#os.chdir(r‘C:\Users\cchen\Desktop‘)
paramiko.util.log_to_file(‘paramiko.log‘)
s = paramiko.SSHClient()
s.load_system_host_keys()
s.set_missing_host_key_policy(paramiko.AutoAddPolicy())
s.connect(hostname,port,username,password)
ssh=s.invoke_shell()
ss-=1
while(1):
time.sleep(ss)
ssh=s.invoke_shell()
ssh.send(‘ps -ef\n‘)
time.sleep(1)
x = ssh.recv(10000)
#print x
pattern1=re.compile(r‘(./rcpd|\[rcpd\])‘)
rcpd=re.findall(pattern1,x)
print rcpd,time.strftime(‘%Y-%m-%d %H:%M:%S‘,time.localtime(time.time()))
pattern2=re.compile(r‘(./cfgd|\[cfgd\])‘)
cfgd=re.findall(pattern2,x)
print cfgd,time.strftime(‘%Y-%m-%d %H:%M:%S‘,time.localtime(time.time()))
if not rcpd[0]==‘./rcpd‘:
try:
raise RCPD_Exception(‘RCPD stuck‘)
except RCPD_Exception,e:
print e

if not cfgd[0]==‘./cfgd‘:
try:
raise CFGD_Exception(‘CFGD stuck‘)
except CFGD_Exception,e:
print e

if __name__==‘__main__‘: check(‘200.200.180.18‘,8)

 

My first python script for work

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.