問題描述:python
環境: CentOS6.4linux
一個用python寫的監控腳本test1.py,用while True方式一直運行,在ssh遠程(使用putty終端)時經過如下命令啓動腳本:windows
python test1.py &
如今腳本正常運行,經過ps能看到進程號,此時直接關閉ssh終端(不是用exit命令,是直接經過putty的關閉按鈕執行的), 再次登陸後發現進程已經退出了。bash
經過後臺啓動的方式該問題已經解決,這裏總結下,也方便我之後查閱。ssh
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' % pid 29 os._exit(0) 30 except OSError, error: 31 print 'fork #2 failed: %d (%s)' % (error.errno, error.strerror) 32 os._exit(1) 33 # 重定向標準IO 34 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 demo 45 46 if __name__ == '__main__': 47 if platform.system() == "Linux": 48 createDaemon() 49 else: 50 os._exit(0)
能夠經過upstart把應用封裝成系統服務,這裏直接記錄下完整示例。spa
一、編寫python腳本code
[root@local t27]# cat test123.py #!/usr/bin/env python import os,time while True : print time.time() time.sleep(1)
二、編寫upstat配置文件orm
[root@local t27]# cat /etc/init/mikeTest.conf description "My test" author "Mike_Zhang@live.com" start on runlevel [234] stop on runlevel [0156] chdir /test/t27 exec /test/t27/test123.py respawn
三、從新加載upstateblog
initctl reload-configuration
四、啓動服務
[root@local t27]# start mikeTest mikeTest start/running, process 6635 [root@local t27]# ps aux | grep test123.py root 6635 0.0 0.0 22448 3716 ? Ss 09:55 0:00 python /test/t27/test123.py root 6677 0.0 0.0 103212 752 pts/1 S+ 09:56 0:00 grep test123.py
五、中止服務
[root@local t27]# stop mikeTest mikeTest stop/waiting [root@local t27]# ps aux | grep test123.py root 6696 0.0 0.0 103212 752 pts/1 S+ 09:56 0:00 grep test123.py [root@local t27]#
一、python代碼
[root@local test]# cat test123.py #!/usr/bin/env python import os,time while True : print time.time() time.sleep(1)
二、編寫啓動腳本
[root@local test]# cat start.sh #! /bin/sh python test123.py &
三、啓動進程
[root@local test]#./start.sh
若是直接用&啓動進程:
python test123.py &
直接關閉ssh終端會致使進程退出。
若是臨時跑程序的話,能夠經過screen、tmux啓動程序,這裏描述下tmux啓動的方式。
一、啓動tmux
在終端輸入tmux便可啓動
二、在tmux中啓動程序
直接執行以下命令便可(腳本參考上面的): python test123.py
三、直接關閉ssh終端(好比putty上的關閉按鈕);
四、從新ssh上去以後,執行以下命令:
tmux attach
如今能夠看到python程序還在正常執行。
在windows下沒有深刻的研究過,我常常用的方法是修改python腳本的擴展名爲".pyw",雙擊便可後臺運行,不須要修改任何代碼。