使用Docker-Compose搭建Redis集群(三台机器)

1.准备工作

三台机器:192.168.40.1

                  192.168.40.2

                  192.168.40.3

每台机器部署两个redis一主一从

为保证安全性,将默认的端口6379、6380更改为5201、5202

2.配置文件存放位置

我的文件存放位置如下图所示,可以根据实际情况进行修改,如若要修改的话,要同时修改docker-compose的配置文件映射的位置。

使用Docker-Compose搭建Redis集群(三台机器)_第1张图片

3.编辑redis.conf文件

如下是192.168.40.1的redis的配置文件,其余两台机器的配置文件类似,只需修改宿主机IP

修改为主机对应的IP,例:主机IP为192.168.40.2,修改为cluster-announce-ip 192.168.40.2

主机IP为192.168.40.3,修改为cluster-announce-ip 192.168.40.3

# 密码
requirepass youdiancaideyunwei
masterauth youdiancaideyunwei
# redis端口
port 5201
# 关闭保护模式
protected-mode no
# 开启集群
cluster-enabled yes
# 集群节点配置
cluster-config-file nodes.conf
# 超时
cluster-node-timeout 5000
# 集群节点IP host模式为宿主机IP
cluster-announce-ip 192.168.40.1
# 集群节点端口
cluster-announce-port 5201
cluster-announce-bus-port 15201
# 开启 appendonly 备份模式
appendonly yes
# 每秒钟备份
appendfsync everysec
# 对aof文件进行压缩时,是否执行同步操作
no-appendfsync-on-rewrite no
# 当目前aof文件大小超过上一次重写时的aof文件大小的100%时会再次进行重写
auto-aof-rewrite-percentage 100
# 重写前AOF文件的大小最小值 默认 64mb
auto-aof-rewrite-min-size 64mb
# 关闭RDB写盘
save ""
# 密码
requirepass youdiancaideyunwei
masterauth youdiancaideyunwei
# redis端口
port 5202
# 关闭保护模式
protected-mode no
# 开启集群
cluster-enabled yes
# 集群节点配置
cluster-config-file nodes.conf
# 超时
cluster-node-timeout 5000
# 集群节点IP host模式为宿主机IP
cluster-announce-ip 192.168.40.1
# 集群节点端口
cluster-announce-port 5202
cluster-announce-bus-port 15202
# 开启 appendonly 备份模式
appendonly yes
# 每秒钟备份
appendfsync everysec
# 对aof文件进行压缩时,是否执行同步操作
no-appendfsync-on-rewrite no
# 当目前aof文件大小超过上一次重写时的aof文件大小的100%时会再次进行重写
auto-aof-rewrite-percentage 100
# 重写前AOF文件的大小最小值 默认 64mb
auto-aof-rewrite-min-size 64mb
# 关闭RDB写盘
save ""
4.编辑docker-compose.yml文件

三台机器共用相同的docker-compose.yml文件

version: '3.7'

services:
  redis5201:
    image: 'redis:6.2.5'
    container_name: redis5201
    network_mode: host
    restart: always
    command:
      ["redis-server", "/usr/local/etc/redis/redis.conf"]
    volumes:
      - ./conf/redis5201.conf:/usr/local/etc/redis/redis.conf
      - ./redis5201data:/data
      - /etc/hosts:/etc/hosts:ro
      - /etc/localtime:/etc/localtime:ro
    environment:
      # 设置时区为上海,否则时间会有问题
      - TZ=Asia/Shanghai

  redis5202:
    image: 'redis:6.2.5'
    container_name: redis5202
    network_mode: host
    restart: always
    command:
      ["redis-server", "/usr/local/etc/redis/redis.conf"]
    volumes:
      - ./conf/redis5202.conf:/usr/local/etc/redis/redis.conf
      - ./redis5202data:/data
      - /etc/hosts:/etc/hosts:ro
      - /etc/localtime:/etc/localtime:ro
    environment:
      # 设置时区为上海,否则时间会有问题
      - TZ=Asia/Shanghai
5.构建容器

docker-compose up -d

要在docker-compose.yml文件的目录里执行命令。

6.构建集群

docker exec -it redis5201 redis-cli -p 5201 -a youdiancaideyunwei --cluster create 192.168.40.1:5201 192.168.40.2:5201 192.168.40.3:5201 192.168.40.1:5202 192.168.40.2:5202 192.168.40.3:5202 --cluster-replicas 1

按照系统提示输入‘yes’

使用Docker-Compose搭建Redis集群(三台机器)_第2张图片

成功后提示

7.测试集群构建是否成功

docker exec -it redis5201 redis-cli -p 5201 -a youdiancaideyunwei cluster nodes

你可能感兴趣的:(运维,docker,redis,容器,1024程序员节)