supervisord命令 – 配置后台服务/常驻进程的进程工具
supervisor是一个用 Python 写的进程管理工具,可以很方便的用来在 UNIX-like 系统(不支持 Windows)下启动、重启(自动重启程序)、关闭进程(不仅仅是 Python 进程)。
语法格式: supervisord [参数]
常用参数:
status查看程序状态 start启动程序stop关闭程序update重启配置文件修改过的程序
参考实例
查看进程运行状态:
[root@linuxcool ~]# supervisorctl status
启动进程:
[root@linuxcool ~]# supervisorctl start 进程名
关闭进程:
[root@linuxcool ~]# supervisorctl stop 进程名
清空进程日志:
[root@linuxcool ~]# supervisorctl clear 进程名
重新载入配置文件:
[root@linuxcool ~]# supervisorctl update
还没有评论,来说两句吧...