python指令碼後臺執行
阿新 • • 發佈:2019-01-09
問題描述:
環境: 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 : [email protected] 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方式實現
可以通過upstart把應用封裝成系統服務,這裡直接記錄下完整示例。
1、編寫python指令碼
[[email protected] t27]# cat test123.py
#!/usr/bin/env python
import os,time
while True :
print time.time()
time.sleep(1)
2、編寫upstat配置檔案
[[email protected] t27]# cat /etc/init/mikeTest.conf
description "My test"
author "[email protected]"
start on runlevel [234]
stop on runlevel [0156]
chdir /test/t27
exec /test/t27/test123.py
respawn
3、重新載入upstate
initctl reload-configuration
4、啟動服務
[[email protected] t27]# start mikeTest
mikeTest start/running, process 6635
[[email protected] 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
5、停止服務
[[email protected] t27]# stop mikeTest
mikeTest stop/waiting
[[email protected] t27]# ps aux | grep test123.py
root 6696 0.0 0.0 103212 752 pts/1 S+ 09:56 0:00 grep test123.py
[[email protected] t27]#
通過bash指令碼實現
1、python程式碼
[[email protected] test]# cat test123.py
#!/usr/bin/env python
import os,time
while True :
print time.time()
time.sleep(1)
2、編寫啟動指令碼
[[email protected] test]# cat start.sh
#! /bin/sh
python test123.py &
3、啟動程序
[[email protected] 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程式還在正常執行。
轉自:http://www.cnblogs.com/MikeZhang/p/pythonDeamon_20150307.html