redis 系列25 哨兵Sentinel (高可用演示 下)

来源:https://www.cnblogs.com/MrHSR/archive/2018/12/20/10144523.html
-Advertisement-
Play Games

一. Sentinel 高可用環境準備 1.1 Sentinel 集群環境 1.2 Redis主庫庫環境,主從庫搭建在(redis 系列22 複製Replication 下) 二. Sentinel 配置說明 2.1 啟動Sentinel服務方法 對於啟動Sentinel服務有二種方法: (1)是使 ...


一. Sentinel 高可用環境準備

  1.1 Sentinel 集群環境

環境 說明
操作系統版本 CentOS  7.4.1708 
IP地址 172.168.18.200
網關Gateway 172.168.18.1
DNS 172.168.16.11
三個sentinel服務埠 26379,26380,26381
Sentinel密碼 無 不設置
是否RDB持久化 不支持
是否 AOF持久化 不支持

  1.2 Redis主庫庫環境,主從庫搭建在(redis 系列22 複製Replication 下)

主庫ip 172.168.18.201 6379
從庫ip 172.168.18.203 6379,  172.168.18.200 6379

 

二.  Sentinel 配置說明

  2.1 啟動Sentinel服務方法

    對於啟動Sentinel服務有二種方法:

    (1)是使用redis-sentinel程式來啟動 redis-sentinel  sentinel.conf。

    (2)是使用redis-server 程式來啟動一個運行在Sentinel模式下的Redis伺服器 redis-server  sentinel.conf  --sentinel。

    啟動 Sentinel 實例必須指定相應的配置文件, 系統會使用配置文件來保存 Sentinel 的當前狀態, 併在 Sentinel 重啟時通過載入配置文件來進行狀態還原。查看redis-sentinel程式,只是一個軟鏈接,如下所示:

    lrwxrwxrwx. 1 root root      12 12月 18 16:30 redis-sentinel -> redis-server     

  2.2  sentinel.conf 參數說明

    下麵解說sentinel.conf文件中,所需的至少配置參數描述:

    -- 監控主庫, 名稱:mymaster可以自定義, IP埠: 127.0.0.1 6379,判斷主庫客觀下線需要2個Sentinel 同意
        sentinel monitor mymaster 127.0.0.1 6379 2

    -- 認為主庫已經下線所需的毫秒數,例如下線狀態超過60000則判定已經下線。
    sentinel down-after-milliseconds mymaster 60000

    -- 指定故障轉移超時時間,以毫秒為單位,配置所有slaves指向新的master所需的最大時間
    sentinel failover-timeout mymaster 180000

    -- 在執行故障轉移時, 最多可以有多少個從伺服器同時對新的主伺服器進行同步,這個值設為 1 來保證每次只有一個slave 處於不能處理命令請求的狀態。如果這個數字越大,就意味著越 多的slave因為replication而不可用。
    parallel-syncs mymaster 1
        
    --設置連接master的密碼。
    sentinel auth-pass mymaster 123456

 

三.  Sentinel高可用搭建

  只使用單個Sentinel進程來監控redis集群是不可靠的,當單個Sentinel進程down後,整個集群系統將無法按照預期的方式運行。所以有必要將sentinel集群,在IP 200的電腦上將啟動三個Sentinel進程,實現集群。

  3.1  添加3個Sentinel.conf文件

    在ip 為200的sentinel集群伺服器上,在redis運行目錄下,增加3個配置文件,名稱分別為:Sentinel_26379.conf, Sentinel_26380.conf, Sentinel_26381.conf。相關腳本如下:

    --  Sentinel_26379.conf文件配置參數
    protected-mode no
    port 26379
    sentinel monitor mymaster 172.168.18.201  6379 2
    sentinel auth-pass mymaster 123456
    daemonize yes
    logfile "/usr/local/redis/bin/sentinel_26379.log"
    sentinel down-after-milliseconds mymaster 30000
    sentinel parallel-syncs mymaster 1
    sentinel failover-timeout mymaster 180000

    --  Sentinel_26380.conf文件配置參數如下,其它參數與Sentinel_26379文件一樣
    port 26380
    logfile "/usr/local/redis/bin/sentinel_26380.log"

    
    --  Sentinel_26381.conf文件配置參數如下,其它參數與Sentinel_26379文件一樣
    port 26381
    logfile "/usr/local/redis/bin/sentinel_26381.log"

  --增加後文件目錄如下:

[root@localhost bin]# pwd
/usr/local/redis/bin
[root@localhost bin]# ls -l
總用量 22012
-rw-r--r--. 1 root root      92 12月 18 16:38 dump.rdb
-rw-r--r--. 1 root root   57765 12月 18 16:36 redis_bak.conf
-rwxr-xr-x. 1 root root 2452648 12月 18 16:30 redis-benchmark
-rwxr-xr-x. 1 root root 5754888 12月 18 16:30 redis-check-aof
-rwxr-xr-x. 1 root root 5754888 12月 18 16:30 redis-check-rdb
-rwxr-xr-x. 1 root root 2617840 12月 18 16:30 redis-cli
-rw-r--r--. 1 root root   57762 12月 20 14:22 redis.conf
lrwxrwxrwx. 1 root root      12 12月 18 16:30 redis-sentinel -> redis-server
-rwxr-xr-x. 1 root root 5754888 12月 18 16:30 redis-server
-rw-r--r--. 1 root root    7992 12月 20 14:22 sentinel_26379.conf
-rw-r--r--. 1 root root    6887 12月 20 14:23 sentinel_26379.log
-rw-r--r--. 1 root root    7992 12月 20 14:22 sentinel_26380.conf
-rw-r--r--. 1 root root    7081 12月 20 14:23 sentinel_26380.log
-rw-r--r--. 1 root root    7992 12月 20 14:22 sentinel_26381.conf
-rw-r--r--. 1 root root    8465 12月 20 14:23 sentinel_26381.log
-rw-r--r--. 1 root root    7710 12月 19 14:21 sentinel.conf
View Code  

  3.2 啟動三個sentinel服務

     [root@localhost bin]# pwd
    /usr/local/redis/bin
    [root@localhost bin]# ./redis-sentinel ./sentinel_26379.conf
    [root@localhost bin]# ./redis-sentinel ./sentinel_26380.conf
    [root@localhost bin]# ./redis-sentinel ./sentinel_26381.conf

  (1)查看進程信息

[root@localhost bin]# ps -ef | grep redis-sentinel
root       7567      1  0 14:28 ?        00:00:00 ./redis-sentinel *:26379 [sentinel]
root       7572      1  0 14:28 ?        00:00:00 ./redis-sentinel *:26380 [sentinel]
root       7577      1  0 14:28 ?        00:00:00 ./redis-sentinel *:26381 [sentinel]
View Code

  (2)查看主庫與sentinel關聯信息(連接一個sentinel客戶端)

[root@localhost bin]# ./redis-cli -h 172.168.18.200 -p 26381
172.168.18.200:26381> sentinel master mymaster
 1) "name"
 2) "mymaster"
 3) "ip"
 4) "172.168.18.201"
 5) "port"
 6) "6379"
 7) "runid"
 8) "26cd40ba173490e2ceac61433211af7dc7716dda"
 9) "flags"
10) "master"
11) "link-pending-commands"
12) "0"
13) "link-refcount"
14) "1"
15) "last-ping-sent"
16) "0"
17) "last-ok-ping-reply"
18) "169"
19) "last-ping-reply"
20) "169"
21) "down-after-milliseconds"
22) "30000"
23) "info-refresh"
24) "3982"
25) "role-reported"
26) "master"
27) "role-reported-time"
28) "24109"
29) "config-epoch"
30) "0"
31) "num-slaves"
32) "2"
33) "num-other-sentinels"
34) "2"
35) "quorum"
36) "2"
37) "failover-timeout"
38) "180000"
39) "parallel-syncs"
40) "1"
View Code

  (3)sentinel客戶端查看群集信息,可以看到此時主庫ip為201

    172.168.18.200:26380> info sentinel
    # Sentinel
    sentinel_masters:1
    sentinel_tilt:0
    sentinel_running_scripts:0
    sentinel_scripts_queue_length:0
    sentinel_simulate_failure_flags:0
    master0:name=mymaster,status=ok,address=172.168.18.201:6379,slaves=2,sentinels=3

  

四.Sentinel高可用測試

  4.1 測試主從同步

    -- 主庫寫入一個鍵值對
    [root@hsr bin]# ./redis-cli -h 172.168.18.201 -p 6379 -a 123456
    172.168.18.201:6379> set mysentinel  "hello"
    OK
    -- 從庫203 讀取了該鍵
    [root@xuegod64 redis-4.0.6]# redis-cli -h 172.168.18.203 -p 6379 -a 123456
    172.168.18.203:6379> get mysentinel
    "hello"
    -- 從庫200 讀取了該鍵
    [root@localhost bin]# ./redis-cli -h 172.168.18.200 -p 6379 -a     123456
    172.168.18.200:6379> get mysentinel
    "hello"

  4.2 測試故障轉移

    (1)  首先把主庫201的down掉

    172.168.18.201:6379> shutdown
    not connected>

    (2) 在sentinel客戶端查看群集信息,發現此時已經實現了故障轉移,已經將從庫 200 升級成為了新主庫

    172.168.18.200:26381> info sentinel
    # Sentinel
    sentinel_masters:1
    sentinel_tilt:0
    sentinel_running_scripts:0
    sentinel_scripts_queue_length:0
    sentinel_simulate_failure_flags:0
   master0:name=mymaster,status=ok,address=172.168.18.200:6379,slaves=2,sentinels=3

    (3) 在redis客戶端,查看ip 200的複製信息,角色已成了為master

    172.168.18.200:6379> info replication
    # Replication
    role:master
    connected_slaves:1
    slave0:ip=172.168.18.203,port=6379,state=online,offset=204170,lag=0
    master_replid:7464817ee3337cc8f2b508577287b0f0c385a859
    master_replid2:0000000000000000000000000000000000000000
    master_repl_offset:204170
    second_repl_offset:-1
    repl_backlog_active:1
    repl_backlog_size:1048576
    repl_backlog_first_byte_offset:190908
    repl_backlog_histlen:13263

    (4)此時ip200 的redis服務,由之前的只讀,變成了可讀寫。 

    172.168.18.200:6379> set mastername  "ip200"
    OK
    --此時只有203一個從庫,成功讀取了該鍵
    172.168.18.203:6379> get mastername
    "ip200"

     (5)查看其中的一個sentinel日誌,下麵是關於故障轉移的相關信息:

[root@localhost bin]# cat sentinel_26379.log
8516:X 20 Dec 14:22:31.394 # +sdown master mymaster 172.168.18.201 6379
8516:X 20 Dec 14:22:31.496 # +new-epoch 1
8516:X 20 Dec 14:22:31.499 # +vote-for-leader 300fd3d5b5673885c17942c465ec7a09f8f8e2ad 1
8516:X 20 Dec 14:22:32.271 # +config-update-from sentinel 300fd3d5b5673885c17942c465ec7a09f8f8e2ad 172.168.18.200 26381 @ mymaster 172.168.18.201 6379
8516:X 20 Dec 14:22:32.272 # +switch-master mymaster 172.168.18.201 6379 172.168.18.200 6379
8516:X 20 Dec 14:22:32.272 * +slave slave 172.168.18.203:6379 172.168.18.203 6379 @ mymaster 172.168.18.200 6379
8516:X 20 Dec 14:22:32.272 * +slave slave 172.168.18.201:6379 172.168.18.201 6379 @ mymaster 172.168.18.200 6379
8516:X 20 Dec 14:23:02.323 # +sdown slave 172.168.18.201:6379 172.168.18.201 6379 @ mymaster 172.168.18.200 6379

 

  總結:sentinel高可用是基於複製來實現的。在sentinel實現過程中:首先要先搭建好複製架構,並確保數據同步正常運行;最後在複製基礎上,再搭建sentinel群集服務架構,並測試好故障轉移切換。

  


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 一、命令介紹 Linux是多人多工操作系統,所有的文件皆有擁有者。利用 chown 將指定文件的擁有者改為指定的用戶或組, 用戶可以是用戶名或者用戶ID;組可以是組名或者組ID;文件是以空格分開的要改變許可權的文件列表,支持通配符。 。 一般來說,這個指令只有是由系統管理者(root)所使用,一般使用 ...
  • Windows -- cmd命令: netstat 和 arp ...
  • 1、stuff函數 update aa set Code = stuff(Code,3,0,'2') 解析:aa為表名,Code為列名,3代表我要插入或刪除字元的位置,0代表我要刪除的字元個數,'2'代表我插入的字元。 2、N select * from aa where Name=N'李四' 解析 ...
  • mysql5.7忘記密碼修改方法 mysql是開發中最常用的關係資料庫之一。一般在安裝資料庫到時候會自定義root密碼,有時候會忘記該密碼,這時候需要對資料庫進行密碼修改。 一、windows下更改mysql資料庫密碼 在windows下找到my.ini文件,例如:C:\ProgramData\My ...
  • 數據的目錄文件層次設計 我們一般採用多實例的方式,而不是將所有的資料庫儘可能地放在一個實例中。 主要基於以下考慮: 1:不同業務線對應的資料庫放在不同的實例上,部分操作的運維時間容易協調等到。 2:相互獨立,減少相互干擾。不會因為某個業務的激增或某個開發Team的代碼問題,拖累太多的資料庫。 3:實 ...
  • 數據記錄 查詢方式1 查詢方式2 查詢方式3 ...
  • Ubuntu 12.04上安裝HBase並運行 作者:凱魯嘎吉 - 博客園 http://www.cnblogs.com/kailugaji/ 一、HBase的安裝 在官網上下載HBase-1.1.2,將其解壓到/home/wrr文件夾下 配置環境變數 在.bashrc文件最後添加 查看HBase版 ...
  • Ubuntu 12.04上安裝MySQL並運行 作者:凱魯嘎吉 - 博客園 http://www.cnblogs.com/kailugaji/ 安裝MySQL資料庫 確認是否安裝成功 當mysql節點處於LISTEN狀態表示啟動成功 登錄資料庫 MySQL資料庫常用操作 1.顯示所有資料庫(註意後面 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...