使用Supervisor监控进程_supervisor status-CSDN博客

网站介绍:1 Supervisor简介Supervisor 是一个用 Python 写的进程管理工具,可以很方便的用来在 UNIX-like 系统(不支持 Windows)下启动、重启(自动重启程序)、关闭进程(不仅仅是 Python 进程)。2 安装Ubuntu系统下:apt-get install supervisor,通过这种方式安装后,自动设置为开机启动也可以通过 pip install supervisor 进行安装,但是需要手动启动,然后设置为开机启动。如果需要离线安装,则先使用pip_supervisor status