docker搭建redis集群

背景

redis作为缓存,生产中都是使用集群部署,故开发的时候自己搞了个乞丐版集群。

Docker version 25.0.4

Docker Compose version v2.24.7

redis 7.0

目录结构

project-directory/

├── docker-compose.yml

├── config/

│ ├── redis-node-1.conf

│ ├── redis-node-2.conf

│ └── redis-node-3.conf

└── data/

├── redis-node-1/

├── redis-node-2/

└── redis-node-3/

准备redis配置文件

mkdir -p /data/redis
cd /data/redis

xml 复制代码
vi config/redis-node-1.conf

port 7000
cluster-enabled yes
cluster-config-file nodes.conf
cluster-node-timeout 5000
appendonly yes
bind 0.0.0.0
protected-mode no
#requirepass yourpassword
xml 复制代码
vi config/redis-node-2.conf

port 7001
cluster-enabled yes
cluster-config-file nodes.conf
cluster-node-timeout 5000
appendonly yes
bind 0.0.0.0
protected-mode no
#requirepass yourpassword
xml 复制代码
vi config/redis-node-3.conf

port 7002
cluster-enabled yes
cluster-config-file nodes.conf
cluster-node-timeout 5000
appendonly yes
bind 0.0.0.0
protected-mode no
#requirepass yourpassword

准备 docker-compose.yml 配置文件

xml 复制代码
version: "3.9"
services:
  redis-node-1:
    image: redis:7.0
    container_name: redis-node-1
    command: ["redis-server", "/usr/local/etc/redis/redis.conf", "--cluster-enabled", "yes", "--cluster-config-file", "nodes.conf", "--cluster-node-timeout", "5000", "--appendonly", "yes"]
    ports:
      - "7000:7000"
    volumes:
      - ./data/redis-node-1:/data
      - ./config/redis-node-1.conf:/usr/local/etc/redis/redis.conf
    networks:
      - redis-cluster-network

  redis-node-2:
    image: redis:7.0
    container_name: redis-node-2
    command: ["redis-server", "/usr/local/etc/redis/redis.conf", "--cluster-enabled", "yes", "--cluster-config-file", "nodes.conf", "--cluster-node-timeout", "5000", "--appendonly", "yes"]
    ports:
      - "7001:7001"
    volumes:
      - ./data/redis-node-2:/data
      - ./config/redis-node-2.conf:/usr/local/etc/redis/redis.conf
    networks:
      - redis-cluster-network

  redis-node-3:
    image: redis:7.0
    container_name: redis-node-3
    command: ["redis-server", "/usr/local/etc/redis/redis.conf", "--cluster-enabled", "yes", "--cluster-config-file", "nodes.conf", "--cluster-node-timeout", "5000", "--appendonly", "yes"]
    ports:
      - "7002:7002"
    volumes:
      - ./data/redis-node-3:/data
      - ./config/redis-node-3.conf:/usr/local/etc/redis/redis.conf
    networks:
      - redis-cluster-network

networks:
  redis-cluster-network:
    driver: bridge

拉取镜像并启动redis

docker-compose up -d

查看redis容器

docker ps | grep redis

查看每个容器的IP地址

docker inspect redis-node-1 | grep IPAddress

同理:将其他容器的IP一一查出。

创建集群

docker exec -it redis-node-1 redis-cli --cluster create \ 172.19.0.3:7000 172.19.0.2:7001 172.19.0.4:7002 \ --cluster-replicas 0

这里的IP就是上一步查出的,要注意对应容器IP和端口要写对,要和docker-compose.yml配置的内容对上。
这里没有从节点,如果你想添加从节点,语法如下:

docker exec -it redis-node-1 redis-cli --cluster create

<主节点IP>:7000 <主节点IP>:7001 <主节点IP>:7002

<从节点IP>:7003 <从节点IP>:7004 <从节点IP>:7005

--cluster-replicas 1

测试redis

进入容器并登录redis
docker exec -it redis-node-1 redis-cli -c -p 7000

查看集群信息
cluster nodes
cluster info

关闭集群

docker-compose stop

开启集群

docker-compose start

相关推荐
weisian15112 分钟前
Redis篇-11--数据结构篇3--字符串内存模型(简单动态字符串SDS)
数据结构·数据库·redis
.生产的驴16 分钟前
Dcoker Redis哨兵模式集群介绍与搭建 故障转移 分布式 Java客户端连接
java·大数据·数据库·redis·分布式·mysql·缓存
小马爱打代码34 分钟前
SpringBoot集成Canal实现MySQL实时同步数据到Redis
spring boot·redis·mysql
旧人旧梦旧心情3 小时前
docker 安装合集
运维·docker·容器
what_20183 小时前
中间件 redis安装
redis·中间件
BenChuat4 小时前
HBase、Hive、Redis 和 MongoDB的对比
hive·redis·mongodb·hbase
davenian4 小时前
<QNAP 453D QTS-5.x> 日志记录:Docker 运行的 Flask 应用 SSL 证书 过期, 更新证书
docker·容器·ssl
六千江山4 小时前
Redis bitmaps 使用
java·数据库·redis·缓存
一路狂飙的猪4 小时前
Redis性能调优:深入剖析变慢原因及应对策略
数据库·redis·缓存