docker 搭建 redis 集群(哨兵模式)


文件結構

1. redis-sentinel

 1-1.  docker-compose.yml

1-2. sentinel

   1-2-1 docker-compose.yml
   
  1-2-2 sentinel.conf
   
  1-2-3 sentinel1.conf
  
  1-2-4 sentinel2.conf
  
  1-2-5 sentinel3.conf

1、docker-compose 文件實現一主兩從

編寫docker-compose.yml文件,內容如下:

version: '3.7'
services:
  master:
    image: redis
    container_name: redis-master
    restart: always
    command: redis-server --requirepass GaosiDev --masterauth GaosiDev  
    ports:
      - 6380:6379

  slave1:
    image: redis
    container_name: redis-slave-1
    restart: always
    command: redis-server --slaveof redis-master 6379  --requirepass GaosiDev --masterauth GaosiDev  
    ports:
      - 6381:6379


  slave2:
    image: redis
    container_name: redis-slave-2
    restart: always
    command: redis-server --slaveof redis-master 6379  --requirepass GaosiDev --masterauth GaosiDev  
    ports:
      - 6382:6379

docker-compose 文件實現 sentinel

version: '2'
services:
  sentinel1:
    image: redis       ## 鏡像
    container_name: redis-sentinel-1
    ports:
    - "26379:26379"
    command: redis-sentinel /usr/local/etc/redis/sentinel.conf
    volumes:
    - "./sentinel1.conf:/usr/local/etc/redis/sentinel.conf"
  sentinel2:
    image: redis                ## 鏡像
    container_name: redis-sentinel-2
    ports:
    - "26380:26379"           
    command: redis-sentinel /usr/local/etc/redis/sentinel.conf
    volumes:
    - "./sentinel2.conf:/usr/local/etc/redis/sentinel.conf"
  sentinel3:
    image: redis                ## 鏡像
    container_name: redis-sentinel-3
    ports:
    - "26381:26379"           
    command: redis-sentinel /usr/local/etc/redis/sentinel.conf
    volumes:
    - ./sentinel3.conf:/usr/local/etc/redis/sentinel.conf
networks:
  default:
    external:
      name: redis-sentinel_default    ##通過(docker inspect 主節點容器id)來查看,對應 NetworkMode 

編輯 sentinel.conf 文件

port 26379
dir /tmp
#172.18.0.3填寫自己的主節點ip,通過(docker inspect 主節點容器id)來查看,對應 IPAddress
sentinel monitor mymaster 172.17.0.4 6379 2
sentinel auth-pass mymaster GaosiDev 
sentinel down-after-milliseconds mymaster 30000
sentinel parallel-syncs mymaster 1
sentinel failover-timeout mymaster 10000  
sentinel deny-scripts-reconfig yes

參考鏈接

https://www.cnblogs.com/ruiyeclub/p/12355073.html

https://www.cnblogs.com/JulianHuang/p/12650721.html


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM