简介:supervisor是一个python开发的进程管理器,可以用来管理任何语言开发的软件的启动和关闭
Supervisor安装
# 安装 epel 源,如果此前安装过,此步骤跳过
yum install -y epel-release
# 安装supervisor
yum install -y supervisor
# 设置supervisor开机自启动
systemctl enable supervisord
# 启动supervisord服务
systemctl start supervisord
# 查看supervisord服务状态
systemctl status supervisord
配置hyper进程管理
supervisor安装成功后会在/etc/目录下生成supervisord.d文件夹及supervisord.conf配置文件
supervisord.conf 是总的配置文件,新增的配置可以在 supervisord.d 文件夹下创建一个hyperf.ini文件
新增的配置文件必须是以.ini结尾
# 新建一个应用并设置一个名称,这里设置为 hyperf
[program:hyperf]
# 设置命令在指定的目录内执行
directory=/var/www/hyperf/
# 这里为您要管理的项目的启动命令
command=php ./bin/hyperf.php start
# 以哪个用户来运行该进程,请确保该用户有足够的权限,否则启动失败
user=root
# supervisor 启动时自动该应用
autostart=true
# 进程退出后自动重启进程
autorestart=true
# 进程持续运行多久才认为是启动成功
startsecs=1
# 重试次数
startretries=3
# stderr 日志输出位置
stderr_logfile=/var/www/hyperf/runtime/stderr.log
# stdout 日志输出位置
stdout_logfile=/var/www/hyperf/runtime/stdout.log
设置完成后记得重启supervisord,使其生效
systemctl restart supervisord
Supervisord相关管理命令
# 启动 hyperf 应用
supervisorctl start hyperf
# 重启 hyperf 应用
supervisorctl restart hyperf
# 停止 hyperf 应用
supervisorctl stop hyperf
# 查看所有被管理项目运行状态
supervisorctl status
# 重新加载配置文件
supervisorctl update
# 重新启动所有程序
supervisorctl reload
有遗漏或者不对的可以在我的公众号留言哦