系统管理 · 2022年02月20日 0

supervisord命令 – 配置后台服务/常驻进程的进程工具

supervisor是一个用 Python 写的进程管理工具,可以很方便的用来在 UNIX-like 系统(不支持 Windows)下启动、重启(自动重启程序)、关闭进程(不仅仅是 Python 进程)。 **语法格式:** supervisord [参数] **常用参数:** | status | 查看程序状态 | | -------- | -------------------------- | | start | 启动程序 | | stop | 关闭程序 | | update | 重启配置文件修改过的程序 | **参考实例** 查看进程运行状态: ``` [root@anycode ~]# supervisorctl status ``` 启动进程: ``` [root@anycode ~]# supervisorctl start 进程名 ``` 关闭进程: ``` [root@anycode ~]# supervisorctl stop 进程名 ``` 清空进程日志: ``` [root@anycode ~]# supervisorctl clear 进程名 ``` 重新载入配置文件: ``` [root@anycode ~]# supervisorctl update ```