#!/usr/bin/python
# -*- coding: utf-8 -*-
import os
'''
a.判断系统常用服务是否为正常状态,若不正常则将其启动
'''
if os.path.exists(r'/var/run/crond.pid') != True:
os.system('/etc/init.d/crond start 2>&1')
if os.path.exists(r'/var/run/sshd.pid') != True:
os.system('/etc/init.d/sshd start 2>&1')
if os.path.exists(r'/var/run/syslogd.pid') != True:
os.system('/etc/init.d/rsyslog start || /etc/init.d/syslog start 2>&1')
if os.path.exists(r'/var/run/snmpd.pid') != True:
os.system('/etc/init.d/snmpd start 2>&1')
3.运行一段时候发现问题......
<1>服务上西天时,PID文件竟然存在。比如snmp服务报:snmpd dead but pid file exists 坑爹报错
<2>计划任务的服务,也上了西天.....这个如何是好...
4.那成,最终解决方法:
<3>/etc/init.d/sshd stop
[root@localhost ~]# while true ;sleep 60;do sshd=`netstat -ntlp | awk '{print $4}' | grep :22` ;if [[ $sshd = "" ]];then /etc/init.d/sshd start; fi;done
正在启动 sshd: [确定]
5.后续
深夜12点,正打着游戏<卑鄙我>....此时手机铃声响了。xx, 中国区跳板机尼玛无法登陆啊。我擦嘞....60s后,SSHD服务还是木有起来。第二天上班,果断到机房重启SSHD服务。后排查是因为L2TP服务原因造成的,把原先的4G内存换成了8G。问题解决了.....