用 Python 管理系統進程
Supervisor 可以啟動、停止、重啟 * nix 系統中的程序。也可以重啟崩潰的程序。supervisord 的一個守護進程,用于將指定的進程當做子
Supervisor 可以啟動、停止、重啟 * nix 系統中的程序。也可以重啟崩潰的程序。
supervisord 的一個守護進程,用于將指定的進程當做子進程來運行。
supervisorctl 是一個客戶端程序,可以查看日志并通過統一的會話來控制進程。
看例子:
我們寫了一個 py 腳本,用于往 log 文件中記錄一條當前的時間。
- root@ubuntu:/home/zoer # cat daemon.py
- #!/usr/bin/env python
- import time
- import os
- time.sleep(1)
- f = open("log", 'a')
- t = time.time()
- f.write(str(t))
- f.write("")
- f.close()
安裝過程就不說了。
安裝完畢supervisor之后【將配置文件放在/etc下】。修改配置文件,在最后增加如下內容:
- [program:ddd]
- command=/home/zoer/daemon.py
- autorestart = true
然后我們啟動 supervisor 并啟動 daemon.py 的執行。
- root@ubuntu:/home/zoer # supervisord
- /usr/local/lib/python2.7/dist-packages/supervisor-3.0b1-py2.7.egg/supervisor/options.py:286:UserWarning:Supervisord is running as root and it is searching for its configuration file in default locations(including its current working directory)you probably want to specify a "-c" argument specifying an absolute path to a configuration file for improved security.
- 'Supervisord is running as root and it is searching '
- root@ubuntu:/home/zoer # supervisorctl
- ddd STARTING
- supervisor > start ddd
- ddd: ERROR(already started)
- supervisor > stop ddd
- ddd: stopped
- supervisor > start ddd
- ddd: started
- supervisor >
從上面的例子中,看到,可以通過 start 或者 stop 命令來啟動或者停止 ddd 這個進程。 ddd 這里就是我們在配置文件中增加的內容( daemon.py 這個腳本)。
也可以使用 restart 。如下:
- supervisor > restart ddd
- ddd:stopped
- ddd:started
下面我們測試一下,假設說我們手動 kill 掉了 ddd 這個進程,那么 ddd 會自動恢復執行嗎?
為了做實驗,把代碼修改如下:
- root@ubuntu:/home/zoer # cat daemon.py
- #!/usr/bin/env python
- import time
- import os
- while True:
- time.sleep(1)
- f = open("log", 'a')
- t = time.time()
- f.write(str(t))
- f.write("")
- f.close()
通過 ps 可以找到這個進程的 id :
- root 9354 0.2 0.4 10924 4200 ? S 23:16 0:00 python/home/zoer/daemon.py
- root 9395 0.0 0.0 4392 832 pts/3 S + 23:17 0:00 grep --color=auto daemon
- root@ubuntu:/home/zoer
看下面的操作:
- root@ubuntu:/home/zoer # rm log;touch log;kill 9354
- root@ubuntu:/home/zoer # cat log
- 1364710712.51
- root@ubuntu:/home/zoer # cat log
- 1364710712.51
- 1364710713.51
- root@ubuntu:/home/zoer # cat log
- 1364710712.51
- 1364710713.51
- root@ubuntu:/home/zoer # cat log
- 1364710712.51
- 1364710713.51
- 1364710714.52
- root@ubuntu:/home/zoer # cat log
- 1364710712.51
- 1364710713.51
- 1364710714.52
- 1364710715.52
刪除了 log 文件,并且重新創建。然后干掉了 daemon.py 的那個進程。會發現 log 內容又重新有新的內容了。再次 ps 查看進程號。
- root 9429 0.1 0.4 10924 4200 ? S 23:18 0:00 python/home/zoer/daemon.py
- root 9440 0.0 0.0 4392 828 pts/3 S + 23:19 0:00 grep --color=auto daemon
- root@ubuntu:/home/zoer
會發現進程號已經變成9429了。說明 supervisor 已經重啟了被干掉了的進程。
責任編輯:售電衡衡
免責聲明:本文僅代表作者個人觀點,與本站無關。其原創性以及文中陳述文字和內容未經本站證實,對本文以及其中全部或者部分內容、文字的真實性、完整性、及時性本站不作任何保證或承諾,請讀者僅作參考,并請自行核實相關內容。
我要收藏
個贊
-
權威發布 | 新能源汽車產業頂層設計落地:鼓勵“光儲充放”,有序推進氫燃料供給體系建設
2020-11-03新能源,汽車,產業,設計 -
中國自主研制的“人造太陽”重力支撐設備正式啟運
2020-09-14核聚變,ITER,核電 -
探索 | 既耗能又可供能的數據中心 打造融合型綜合能源系統
2020-06-16綜合能源服務,新能源消納,能源互聯網
-
新基建助推 數據中心建設將迎爆發期
2020-06-16數據中心,能源互聯網,電力新基建 -
泛在電力物聯網建設下看電網企業數據變現之路
2019-11-12泛在電力物聯網 -
泛在電力物聯網建設典型實踐案例
2019-10-15泛在電力物聯網案例
-
權威發布 | 新能源汽車產業頂層設計落地:鼓勵“光儲充放”,有序推進氫燃料供給體系建設
2020-11-03新能源,汽車,產業,設計 -
中國自主研制的“人造太陽”重力支撐設備正式啟運
2020-09-14核聚變,ITER,核電 -
能源革命和電改政策紅利將長期助力儲能行業發展
-
探索 | 既耗能又可供能的數據中心 打造融合型綜合能源系統
2020-06-16綜合能源服務,新能源消納,能源互聯網 -
5G新基建助力智能電網發展
2020-06-125G,智能電網,配電網 -
從智能電網到智能城市