game2002/server/bin/monitor_game2002.py
aozhiwei 3e3d375bd0 1
2019-07-23 17:42:55 +08:00

31 lines
751 B
Python

# -*- coding: utf-8 -*-
import os
import time
def getRuningProgramPids(progname):
pids = []
lines = os.popen('ps -ef | grep %s' % progname).readlines()
for l in lines:
line = ''
oldc = ''
for c in l.strip():
if c in [' ', '\t'] and c == oldc:
continue
oldc = c
line += c
line = line.split(' ')
if line[7] == './%s' % progname:
pids.append(line[1])
return pids
def monitor_gs():
while True:
pids = getRuningProgramPids('gameserver2002')
if len(pids) <= 0:
print('zzzz')
os.popen('nohup ./gameserver2002 -n1 -i1 -f1,2,4>> gameserver2002.out 2>&1 &')
time.sleep(2)
monitor_gs()