手机
当前位置:查字典教程网 >脚本专栏 >python >python实现的守护进程(Daemon)用法实例
python实现的守护进程(Daemon)用法实例
摘要:本文实例讲述了python实现的守护进程(Daemon)用法。分享给大家供大家参考。具体如下:defcreateDaemon():"'Fun...

本文实例讲述了python实现的守护进程(Daemon)用法。分享给大家供大家参考。具体如下:

def createDaemon(): "'Funzione che crea un demone per eseguire un determinato programma…"' import os # create - fork 1 try: if os.fork() > 0: os._exit(0) # exit father… except OSError, error: print 'fork #1 failed: %d (%s)' % (error.errno, error.strerror) os._exit(1) # it separates the son from the father os.chdir('/') os.setsid() os.umask(0) # create - fork 2 try: pid = os.fork() if pid > 0: print 'Daemon PID %d' % pid os._exit(0) except OSError, error: print 'fork #2 failed: %d (%s)' % (error.errno, error.strerror) os._exit(1) funzioneDemo() # function demo def funzioneDemo(): import time fd = open('/tmp/demone.log', 'w') while True: fd.write(time.ctime()+'n') fd.flush() time.sleep(2) fd.close() if __name__ == '__main__': createDaemon()

希望本文所述对大家的Python程序设计有所帮助。

【python实现的守护进程(Daemon)用法实例】相关文章:

Python中使用 Selenium 实现网页截图实例

Python的函数嵌套的使用方法

python连接池实现示例程序

Python实现的几个常用排序算法实例

使用python实现扫描端口示例

python创建和使用字典实例详解

python实现的解析crontab配置文件代码

python实现排序算法

python线程锁(thread)学习示例

python脚本实现查找webshell的方法

精品推荐
分类导航