博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python脚本后台运行
阅读量:5170 次
发布时间:2019-06-13

本文共 3220 字,大约阅读时间需要 10 分钟。

问题描述:

环境: CentOS6.4

一个用python写的监控脚本test1.py,用while True方式一直运行,在ssh远程(使用putty终端)时通过以下命令启动脚本:

python test1.py &

现在脚本正常运行,通过ps能看到进程号,此时直接关闭ssh终端(不是用exit命令,是直接通过putty的关闭按钮执行的), 再次登录后发现进程已经退出了。

通过后台启动的方式该问题已经解决,这里总结下,也方便我以后查阅。

linux 下后台运行

通过fork实现

linux环境下,在c中守护进程是通过fork方式实现的,python也可以通过该方式实现,示例代码如下:

1 #!/usr/bin/env python 2 #E-Mail : Mike_Zhang@live.com 3 import time,platform 4 import os 5  6 def funzioneDemo(): 7     # 这是具体业务函数示例 8     fout = open('/tmp/demone.log', 'w') 9     while True:10         fout.write(time.ctime()+'\n')11         fout.flush()12         time.sleep(2)13     fout.close()14 15 def createDaemon():16     # fork进程        17     try:18         if os.fork() > 0: os._exit(0)19     except OSError, error:20         print 'fork #1 failed: %d (%s)' % (error.errno, error.strerror)21         os._exit(1)    22     os.chdir('/')23     os.setsid()24     os.umask(0)25     try:26         pid = os.fork()27         if pid > 0:28             print 'Daemon PID %d' % pid29             os._exit(0)30     except OSError, error:31         print 'fork #2 failed: %d (%s)' % (error.errno, error.strerror)32         os._exit(1)33     # 重定向标准IO34     sys.stdout.flush()35     sys.stderr.flush()36     si = file("/dev/null", 'r')37     so = file("/dev/null", 'a+')38     se = file("/dev/null", 'a+', 0)39     os.dup2(si.fileno(), sys.stdin.fileno())40     os.dup2(so.fileno(), sys.stdout.fileno())41     os.dup2(se.fileno(), sys.stderr.fileno())42 43     # 在子进程中执行代码44     funzioneDemo() # function demo45 46 if __name__ == '__main__': 47     if platform.system() == "Linux":48         createDaemon()49     else:50         os._exit(0)

 

通过upstart方式实现

 

可以通过upstart把应用封装成系统服务,这里直接记录下完整示例。

1、编写python脚本

[root@local t27]# cat test123.py#!/usr/bin/env pythonimport os,timewhile True :    print time.time()    time.sleep(1)

2、编写upstat配置文件

[root@local t27]# cat /etc/init/mikeTest.confdescription "My test"author "Mike_Zhang@live.com"start on runlevel [234]stop on runlevel [0156]chdir /test/t27exec /test/t27/test123.pyrespawn

3、重新加载upstate

initctl reload-configuration

4、启动服务

[root@local t27]# start mikeTestmikeTest start/running, process 6635[root@local t27]# ps aux | grep test123.pyroot      6635  0.0  0.0  22448  3716 ?        Ss   09:55   0:00 python /test/t27/test123.pyroot      6677  0.0  0.0 103212   752 pts/1    S+   09:56   0:00 grep test123.py

5、停止服务

[root@local t27]# stop mikeTestmikeTest stop/waiting[root@local t27]# ps aux | grep test123.pyroot      6696  0.0  0.0 103212   752 pts/1    S+   09:56   0:00 grep test123.py[root@local t27]#

通过bash脚本实现

1、python代码

[root@local test]# cat test123.py#!/usr/bin/env pythonimport os,timewhile True :    print time.time()    time.sleep(1)

2、编写启动脚本

[root@local test]# cat start.sh#! /bin/shpython test123.py &

3、启动进程

[root@local test]#./start.sh

如果直接用&启动进程:

python test123.py &

直接关闭ssh终端会导致进程退出。

 

通过screen、tmux等方式实现

如果临时跑程序的话,可以通过screen、tmux启动程序,这里描述下tmux启动的方式。

1、启动tmux

在终端输入tmux即可启动

2、在tmux中启动程序

直接执行如下命令即可(脚本参考上面的): python test123.py

3、直接关闭ssh终端(比如putty上的关闭按钮);

4、重新ssh上去之后,执行如下命令:

tmux attach

现在可以看到python程序还在正常执行。

 

windows下后台运行

在windows下没有深入的研究过,我经常用的方法是修改python脚本的扩展名为".pyw",双击即可后台运行,不需要修改任何代码。

转载于:https://www.cnblogs.com/MikeZhang/p/pythonDeamon_20150307.html

你可能感兴趣的文章
linux压缩和解压缩命令大全
查看>>
Sublime text 3 注册码激活码 版本号3143
查看>>
通过wifi无法连接手机调试
查看>>
HD 2177(威佐夫博弈 入门)
查看>>
挑战多重部分和问题
查看>>
前端开发 —— js 常用工具函数(utilities)
查看>>
中英文对照 —— 数学定律定理(公式及其描述)
查看>>
韩国"被申遗" (转自果壳)
查看>>
C# CSV 导出
查看>>
EF Ccore 主从配置 最简化
查看>>
学习笔记: yield迭代器
查看>>
vue.js实现联动效果
查看>>
【bzoj1022】[SHOI2008]小约翰的游戏John 博弈论
查看>>
RegisterWaitForSingleObject的使用
查看>>
笔试题分析-2
查看>>
【八枚银币】
查看>>
如何往一个指定的地址写入一个值呢
查看>>
点到圆弧的距离(csu1503)+几何
查看>>
Java Swing
查看>>
python检测文件的MD5值
查看>>