Redis哨兵
单机安装部署
- yum install epel-release -y
- Yum install redis -y
- Mkdir /root/redis
- Cd /root/redis
- cp /etc/redis.conf .
- cp redis.conf redis_6379.conf
- cp redis.conf redis_6380.conf
- cp redis.conf redis_6381.conf
- vim redis_6379.conf
1.配置redis.conf文件中的端口号分别为6379,6380,6381,
2.daemonize均为yes
3.6380和6381 均添加slaveof 127.0.0.1 6379
4.6379文件配置中 默认注释掉slaveof 不用去修改
5.6380和6381 pid均改为改为对应的端口
redis-server redis_6381.conf 启动服务
ps -ef | grep redis 查看启动端口
Redis-cli -p 6379
role查看
启动服务
cd /etc/
cp redis-sentinel.conf redis-sentinel_26379.conf
cp redis-sentinel.conf redis-sentinel_26380.conf
cp redis-sentinel.conf redis-sentinel_26381.conf
vim redis-sentinel_26379.conf
文章来源地址https://www.toymoban.com/news/detail-494835.html
#端口号 (换成相应sentinel的端口号)
port 26379
#守护进程,后台启动
daemonize yes
#监测redis集群的主机
sentinel monitor mymaster 127.0.0.1 6379 2
关闭 Redis 保护模式
--protected-mode no
启动服务
redis-cli -p 26379
127.0.0.1:26379> info
文章来源:https://www.toymoban.com/news/detail-494835.html
到了这里,关于Redis哨兵部署的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!