欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

使用Supervisor管理Redis

程序员文章站 2022-06-02 22:37:20
...
前提:
系统中已经安装了Supervisor

1.进入Supervisor配置文件管理文件夹

cd /etc/supervisor/conf.d/


2、新建redis.ini文件
vi redis.ini

3、编辑一下ini文件内容并保存
[program:redis]
command=/usr/local/bin/redis-server
autostart=true
autorestart=true
startsecs=3
daemonize=no
stdout_logfile=/etc/supervisor/logs/redis.log


4、重新加载使新的配置项生效
supervisorctl reload

5、查看supervisor管理的服务
supervisorctl -c /etc/supervisor/supervisord.conf