Supervisor(Supervisor: A Process Control System)进程管理工具是用Python开发的一个client/server服务,是Linux/Unix系统下的一个进程管理工具,不支持Windows系统。它可以很方便的监听、启动、停止、重启一个或多个进程。用Supervisor管理的进程,当一个进程意外被杀死,supervisort监听到进程死后,会自动将它重新拉起,很方便的做到进程自动恢复的功能,不再需要自己写shell脚本来控制。
一、安装环境
- 系统版本
cat /etc/redhat-release CentOS Linux release 7.9.2009 (Core)
- Python版本
python -V Python 2.7.5
二、安装Supervisor
- RedHat / CentOS
- 安装 epel 源
yum install -y epel-release
- 安装 supervisor
yum install -y supervisor
- 启动 supervisord 服务
systemctl start supervisord
- 开机自启动
systemctl enable supervisord
- 查看 supervisord 服务状态
systemctl status supervisord
- 安装 epel 源
- Ubuntu / Debian
- 安装 supervisor
sudo apt-get install supervisor
- 安装成功后,supervisor 会默认启动
- 安装 supervisor