Supervisor 部署

SupervisorLinux/Unix 系统下的一个进程管理工具。可以很方便的监听、启动、停止和重启一个或多个进程。通过 Supervisor 管理的进程,当进程意外被 Kill 时,Supervisor 会自动将它重启,可以很方便地做到进程自动恢复的目的,而无需自己编写 shell 脚本来管理进程。

安装 Supervisor

这里仅举例 CentOS 系统下的安装方式:

  1. # 安装 epel 源,如果此前安装过,此步骤跳过
  2. yum install -y epel-release
  3. yum install -y supervisor

创建一个配置文件

  1. cp /etc/supervisord.conf /etc/supervisord.d/supervisord.conf

编辑新复制出来的配置文件 /etc/supervisord.d/supervisord.conf,并在文件结尾处添加以下内容后保存文件:

  1. # 新建一个应用并设置一个名称,这里设置为 hyperf
  2. [program:hyperf]
  3. # 设置命令在指定的目录内执行
  4. directory=/var/www/hyperf/
  5. # 这里为您要管理的项目的启动命令
  6. command=php ./bin/hyperf.php start
  7. # 以哪个用户来运行该进程
  8. user=root
  9. # supervisor 启动时自动该应用
  10. autostart=true
  11. # 进程退出后自动重启进程
  12. autorestart=true
  13. # 进程持续运行多久才认为是启动成功
  14. startsecs=1
  15. # 重试次数
  16. startretries=3
  17. # stderr 日志输出位置
  18. stderr_logfile=/var/www/hyperf/runtime/stderr.log
  19. # stdout 日志输出位置
  20. stdout_logfile=/var/www/hyperf/runtime/stdout.log

启动 Supervisor

运行下面的命令基于配置文件启动 Supervisor 程序:

  1. supervisord -c /etc/supervisord.d/supervisord.conf

使用 supervisorctl 管理项目

  1. # 启动 hyperf 应用
  2. supervisorctl start hyperf
  3. # 重启 hyperf 应用
  4. supervisorctl restart hyperf
  5. # 停止 hyperf 应用
  6. supervisorctl stop hyperf
  7. # 查看所有被管理项目运行状态
  8. supervisorctl status
  9. # 重新加载配置文件
  10. supervisorctl update
  11. # 重新启动所有程序
  12. supervisorctl reload