欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

基于docker搭建redis-sentinel集群的方法示例

 更新時(shí)間:2019年06月19日 08:24:04   作者:猿小源  
這篇文章主要介紹了基于docker搭建redis-sentinel集群的方法示例,小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧

1、概述

Redis 集群可以在一組 redis 節(jié)點(diǎn)之間實(shí)現(xiàn)高可用性和 sharding。在集群中會(huì)有 1 個(gè) master 和多個(gè) slave 節(jié)點(diǎn)。當(dāng) master 節(jié)點(diǎn)失效時(shí),應(yīng)選舉出一個(gè) slave 節(jié)點(diǎn)作為新的 master。然而 Redis 本身(包括它的很多客戶端)沒有實(shí)現(xiàn)自動(dòng)故障發(fā)現(xiàn)并進(jìn)行主備切換的能力,需要外部的監(jiān)控方案來實(shí)現(xiàn)自動(dòng)故障恢復(fù)。

Redis Sentinel 是官方推薦的高可用性解決方案。它是 Redis 集群的監(jiān)控管理工具,可以提供節(jié)點(diǎn)監(jiān)控、通知、自動(dòng)故障恢復(fù)和客戶端配置發(fā)現(xiàn)服務(wù)。

2、遇到的問題

1、docker host網(wǎng)絡(luò)

docker使用host網(wǎng)絡(luò)時(shí)對(duì)于windows 、mac不生效(沒找到解決方案),最后放棄了windows 使用centos部署集群。

2、不使用host網(wǎng)絡(luò)的情況下sentinel 連接問題

不使用host網(wǎng)絡(luò)的情況下連接sentinel集群時(shí)可以指定主節(jié)點(diǎn)端口故可以正常聯(lián)通, 但在主節(jié)點(diǎn)故障時(shí) sentinel 從主節(jié)點(diǎn)獲取到的 IP 是容器內(nèi)的虛擬 IP 導(dǎo)致集群無法正常連接。

 

3、搭建過程

1、目錄結(jié)構(gòu)

 

 

2、sentinel 配置文件

1、sentinel1.conf

#端口號(hào)
port 26379
dir /tmp
# mymaster:自定義集群名,2:投票數(shù)量必須2個(gè)sentinel才能判斷主節(jié)點(diǎn)是否失敗
sentinel monitor mymaster <ip> <port> 2
# 指的是超過5000秒,且沒有回復(fù),則判定主節(jié)點(diǎn)不可達(dá)
sentinel down-after-milliseconds mymaster 5000
# 表示在故障轉(zhuǎn)移的時(shí)候最多有numslaves在同步更新新的master
sentinel parallel-syncs mymaster 1
# 故障轉(zhuǎn)移超時(shí)時(shí)間
sentinel failover-timeout mymaster 5000

2、sentinel2.conf

#端口號(hào)
port 26380
dir /tmp
# mymaster:自定義集群名,2:投票數(shù)量必須2個(gè)sentinel才能判斷主節(jié)點(diǎn)是否失敗
sentinel monitor mymaster <ip> <port> 2
# 指的是超過5000秒,且沒有回復(fù),則判定主節(jié)點(diǎn)不可達(dá)
sentinel down-after-milliseconds mymaster 5000
# 表示在故障轉(zhuǎn)移的時(shí)候最多有numslaves在同步更新新的master
sentinel parallel-syncs mymaster 1
# 故障轉(zhuǎn)移超時(shí)時(shí)間
sentinel failover-timeout mymaster 5000

3、sentinel3.conf

#端口號(hào)
port 26381
dir /tmp
# mymaster:自定義集群名,2:投票數(shù)量必須2個(gè)sentinel才能判斷主節(jié)點(diǎn)是否失敗
sentinel monitor mymaster <ip> <port> 2
# 指的是超過5000秒,且沒有回復(fù),則判定主節(jié)點(diǎn)不可達(dá)
sentinel down-after-milliseconds mymaster 5000
# 表示在故障轉(zhuǎn)移的時(shí)候最多有numslaves在同步更新新的master
sentinel parallel-syncs mymaster 1
# 故障轉(zhuǎn)移超時(shí)時(shí)間
sentinel failover-timeout mymaster 5000

3、docker-compose.yml

version: '2'
services:
 master:
 image: redis:4.0
 restart: always
 container_name: redis-master
 #使用主機(jī)網(wǎng)絡(luò)
 network_mode: "host"
 command: redis-server --port 16379 
 
 slave1:
 image: redis:4.0
 restart: always
 container_name: redis-slave-1
 network_mode: "host"
 # 指定端口并指定master ip 端口
 command: redis-server --port 16380 --slaveof <master ip> 16379
 
 slave2:
 image: redis:4.0
 restart: always
 container_name: redis-slave-2
 network_mode: "host" 
 command: redis-server --port 16381 --slaveof <master ip> 16379
 
 sentinel1:
 image: redis:4.0
 restart: always
 container_name: redis-sentinel-1
 network_mode: "host"
 # 指定sentinel文件位置
 command: redis-sentinel /usr/local/etc/redis/sentinel.conf
 # 使用數(shù)據(jù)卷映射文件到指定sentinel位置
 volumes:
  - ./sentinel/sentinel1.conf:/usr/local/etc/redis/sentinel.conf
 
 sentinel2:
 image: redis:4.0
 restart: always
 container_name: redis-sentinel-2
 network_mode: "host" 
 command: redis-sentinel /usr/local/etc/redis/sentinel.conf
 volumes:
  - ./sentinel/sentinel2.conf:/usr/local/etc/redis/sentinel.conf
 
 sentinel3:
 image: redis:4.0
 restart: always
 container_name: redis-sentinel-3
 network_mode: "host" 
 command: redis-sentinel /usr/local/etc/redis/sentinel.conf
 volumes:
  - ./sentinel/sentinel3.conf:/usr/local/etc/redis/sentinel.conf 

4、使用centos 部署集群測(cè)試效果

1、測(cè)試通過sentinel1連接集群

2、測(cè)試主節(jié)點(diǎn)子節(jié)點(diǎn)數(shù)據(jù)同步

3、關(guān)閉master查看主備切換

sentinel 正常聯(lián)通

主節(jié)點(diǎn)從16379 切換 至16381

結(jié)尾

端午之后偷了一周的懶,之前就搭建了一次sentinel 集群由于docker 網(wǎng)絡(luò)模型問題導(dǎo)致主備節(jié)點(diǎn)切換后集群連接不上,昨天看到host不能在window上實(shí)現(xiàn)就放到centos上測(cè)試了一番完美搞定。

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • Docker系列compose?ymal文件解析學(xué)習(xí)

    Docker系列compose?ymal文件解析學(xué)習(xí)

    這篇文章主要介紹了Docker系列之compose?ymal文件解析學(xué)習(xí),有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2022-10-10
  • docker nginx 運(yùn)行后無法訪問的問題解決

    docker nginx 運(yùn)行后無法訪問的問題解決

    這篇文章主要介紹了docker nginx 運(yùn)行后無法訪問的問題解決,小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧
    2018-09-09
  • Docker私有倉(cāng)庫(kù)的搭建和界面化管理詳解

    Docker私有倉(cāng)庫(kù)的搭建和界面化管理詳解

    這篇文章主要給大家介紹了關(guān)于Docker私有倉(cāng)庫(kù)的搭建和界面化管理的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家學(xué)習(xí)或者使用Docker具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面來一起學(xué)習(xí)學(xué)習(xí)吧
    2019-12-12
  • 如何監(jiān)控docker容器運(yùn)行狀態(tài) shell 腳本

    如何監(jiān)控docker容器運(yùn)行狀態(tài) shell 腳本

    這篇文章主要介紹了如何監(jiān)控docker容器運(yùn)行狀態(tài) shell 腳本的操作方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧
    2021-03-03
  • Docker數(shù)據(jù)卷掛載及宿主機(jī)目錄掛載使用和區(qū)別

    Docker數(shù)據(jù)卷掛載及宿主機(jī)目錄掛載使用和區(qū)別

    本文主要介紹了Docker數(shù)據(jù)卷掛載及宿主機(jī)目錄掛載使用和區(qū)別,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2024-02-02
  • centos7 安裝Jenkins詳細(xì)介紹

    centos7 安裝Jenkins詳細(xì)介紹

    這篇文章主要介紹了centos7 安裝Jenkins詳細(xì)介紹的相關(guān)資料,需要的朋友可以參考下
    2016-11-11
  • docker如何動(dòng)態(tài)查看日志最后100行

    docker如何動(dòng)態(tài)查看日志最后100行

    這篇文章主要介紹了docker如何動(dòng)態(tài)查看日志最后100行問題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教<BR>
    2024-01-01
  • 使用OpenSSL生成Kubernetes證書的介紹

    使用OpenSSL生成Kubernetes證書的介紹

    今天小編就為大家分享一篇關(guān)于使用OpenSSL生成Kubernetes證書的介紹,小編覺得內(nèi)容挺不錯(cuò)的,現(xiàn)在分享給大家,具有很好的參考價(jià)值,需要的朋友一起跟隨小編來看看吧
    2019-01-01
  • docker該如何刪除已停止的容器

    docker該如何刪除已停止的容器

    Docker是一個(gè)非常有趣的項(xiàng)目,容器是獨(dú)立運(yùn)行的一個(gè)或一組應(yīng)用,及他們的運(yùn)行環(huán)境,容器是Docker中的一個(gè)重要的概念,這篇文章主要給大家介紹了關(guān)于docker該如何刪除已停止的容器的相關(guān)資料,需要的朋友可以參考下
    2023-05-05
  • docker容器訪問宿主機(jī)的MySQL操作

    docker容器訪問宿主機(jī)的MySQL操作

    這篇文章主要介紹了docker容器訪問宿主機(jī)的MySQL操作,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧
    2021-03-03

最新評(píng)論