What is supervisor Supervisor is a client/server system that allows its users to monitor and control a number of processes on UNIX-like operating systems. 引用自supervisor官网,中文意思就是是一个C/S架构的系统,用来监控管理类UNIX系统上进…
There is a way to start another script in python by doing this:
import os
os.system("python [name of script].py")
So how can i stop another already running script? I would like to stop the script by using the name.
解决方案
It is more usual to i…