redis集群cluster簡單設置

来源:https://www.cnblogs.com/caesar-id/archive/2019/05/11/10850152.html
-Advertisement-
Play Games

環境: 這裡參考官方使用一臺伺服器:Centos 7 redis-5.0.4 192.168.10.10 redis集群cluster最少要3個主節點,所以本次需要創建6個實例:3個主節點,3個從節點。 1、創建cluster工作目錄 [root@localhost ~]# mkdir -p /op ...


環境:

這裡參考官方使用一臺伺服器:Centos 7  redis-5.0.4    192.168.10.10

redis集群cluster最少要3個主節點,所以本次需要創建6個實例:3個主節點,3個從節點。

1、創建cluster工作目錄

[root@localhost ~]# mkdir -p /opt/redis-5.0.4/cluster-test/{7000,7001,7002,7003,7004,7005}

2、創建cluster的配置文件

[root@localhost ~]# cd /opt/redis-5.0.4/cluster-test/
[root@localhost cluster-test]# vim 7000/redis.conf
port 7000       // 埠號
daemonize yes   // 開啟守護進程
dir "/opt/redis-5.0.4/cluster-test/data"  // 集群的工作目錄
logfile "/opt/redis-5.0.4/cluster-test/log/cluster-7000.log" // 日誌文件
dbfilename "dump-7000.rdb" 
cluster-enabled yes   // 啟用集群功能
cluster-config-file nodes-7000.conf   // 集群配置文件的名字
cluster-require-full-coverage no  // #redis cluster需要16384個slot都正常的時候才能對外提供服務,換句話說,只要任何一個slot異常那麼整個cluster不對外提供服務。 因此生產環境一般為no
cluster-node-timeout 5000  //請求超時  預設15秒,可自行設置
appendonly yes  //aof日誌開啟  有需要就開啟,它會每次寫操作都記錄一條日誌

 由於這6個實例的配置文件除了埠以外基本相同。所以我們將redis.conf分別複製一份到剩下的7001、7002、7003、7004、7005的目錄下然後修改對應的埠。

最終的配置文件看起來向下麵這樣

[root@localhost cluster-test]# vim 7000/redis.conf
port 7000
daemonize yes
dir "/opt/redis-5.0.4/cluster-test/data"
logfile "/opt/redis-5.0.4/cluster-test/log/cluster-7000.log"
dbfilename "dump-7000.rdb"
cluster-enabled yes
cluster-config-file nodes-7000.conf
cluster-require-full-coverage no
cluster-node-timeout 5000
appendonly yes

---------------------------------------------------------------------

[root@localhost cluster-test]# vim 7001/redis.conf
port 7001
daemonize yes
dir "/opt/redis-5.0.4/cluster-test/data"
logfile "/opt/redis-5.0.4/cluster-test/log/cluster-7001.log"
dbfilename "dump-7001.rdb"
cluster-enabled yes
cluster-config-file nodes-7001.conf
cluster-require-full-coverage no
cluster-node-timeout 5000
appendonly yes

------------------------------------------------------------------------

[root@localhost cluster-test]# vim 7002/redis.conf
port 7002
daemonize yes
dir "/opt/redis-5.0.4/cluster-test/data"
logfile "/opt/redis-5.0.4/cluster-test/log/cluster-7002.log"
dbfilename "dump-7002.rdb"
cluster-enabled yes
cluster-config-file nodes-7002.conf
cluster-require-full-coverage no
cluster-node-timeout 5000
appendonly yes

------------------------------------------------------------------------

[root@localhost cluster-test]# vim 7003/redis.conf
port 7003
daemonize yes
dir "/opt/redis-5.0.4/cluster-test/data"
logfile "/opt/redis-5.0.4/cluster-test/log/cluster-7003.log"
dbfilename "dump-7003.rdb"
cluster-enabled yes
cluster-config-file nodes-7003.conf
cluster-require-full-coverage no
cluster-node-timeout 5000
appendonly yes

------------------------------------------------------------------------

[root@localhost cluster-test]# vim 7004/redis.conf
port 7004
daemonize yes
dir "/opt/redis-5.0.4/cluster-test/data"
logfile "/opt/redis-5.0.4/cluster-test/log/cluster-7004.log"
dbfilename "dump-7004.rdb"
cluster-enabled yes
cluster-config-file nodes-7004.conf
cluster-require-full-coverage no
cluster-node-timeout 5000
appendonly yes

------------------------------------------------------------------------

[root@localhost cluster-test]# vim 7005/redis.conf
port 7005
daemonize yes
dir "/opt/redis-5.0.4/cluster-test/data"
logfile "/opt/redis-5.0.4/cluster-test/log/cluster-7005.log"
dbfilename "dump-7005.rdb"
cluster-enabled yes
cluster-config-file nodes-7005.conf
cluster-require-full-coverage no
cluster-node-timeout 5000
appendonly yes
redis.conf

創建好配置文件,在創建對應的cluster工作目錄和日誌文件目錄

[root@localhost ~]# mkdir -p /opt/redis-5.0.4/cluster-test/data
[root@localhost ~]# mkdir -p /opt/redis-5.0.4/cluster-test/log

3、運行集群

這裡需要註意:
如果你使用的是Redis 5,我們可以使用redis-cli中的Redis集群命令行實用程式來創建新的集群、檢查或重新分割現有集群,等等。
對於Redis版本3或4,需要使用redis-trib。可以在Redis源代碼發行版的src目錄中找到它。需要安裝redis gem才能運行redis-trib,而gem需要reby環境,所以需要安裝reby

如果是redis版本5以下的請按照下麵安裝reby環境和redis.gem。

3.1安裝reby環境

[root@localhost cluster-test]# wget -P /opt/source https://cache.ruby-lang.org/pub/ruby/2.3/ruby-2.3.1.tar.gz
[root@localhost cluster-test]# tar -zxvf /opt/source/ruby-2.3.1.tar.gz -C /opt/
[root@localhost cluster-test]# cd /opt/ruby-2.3.1/
[root@localhost ruby-2.3.1]# ./configure --prefix=/opt/ruby231
[root@localhost ruby-2.3.1]# make && make install
[root@localhost bin]# vim /etc/profile // 添加環境變數
PATH="/opt/python362/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin:/opt/tngx230/sbin:/opt/node-v8.6.0-linux-x64/bin:/opt/ruby231/bin"
[root@localhost src]# cp /opt/ruby231/bin/ruby /usr/local/ // redis-trib.rb會到這裡去找reby
[root@localhost src]# cp /opt/ruby231/bin/gem /usr/local/
[root@localhost bin]# source /etc/profile // 使配置立即生效

3.2安裝redis.gem

[root@localhost ~]# gem install redis

3.3開啟redis實例 

[root@localhost ~]# redis-server /opt/redis-5.0.4/cluster-test/7000/redis.conf 
[root@localhost ~]# redis-server /opt/redis-5.0.4/cluster-test/7001/redis.conf 
[root@localhost ~]# redis-server /opt/redis-5.0.4/cluster-test/7002/redis.conf 
[root@localhost ~]# redis-server /opt/redis-5.0.4/cluster-test/7003/redis.conf 
[root@localhost ~]# redis-server /opt/redis-5.0.4/cluster-test/7004/redis.conf 
[root@localhost ~]# redis-server /opt/redis-5.0.4/cluster-test/7005/redis.conf 

開啟成功後,看起來像下麵這樣:

3.3運行集群

[root@localhost src]# ./redis-trib.rb create --replicas 1 127.0.0.1:7000 127.0.0.1:7001 127.0.0.1:7002 127.0.0.1:7003 127.0.0.1:7004 127.0.0.1:7005

如果是redis5.0以上版本會有如下提示信息:

 對於3或4版本的盆友,我也就只能走到這裡了,下麵我將以5.0版本進行操作。

4、運行集群

[root@localhost src]# redis-cli --cluster create 127.0.0.1:7000 127.0.0.1:7001 127.0.0.1:7002 127.0.0.1:7003 127.0.0.1:7004 127.0.0.1:7005 --cluster-replicas 1

命令執行成功後,會看到如下界面:

 

 輸入yes根據上面的配置進行設置開啟集群,集群開啟成功後如下所示:

 5、查看集群狀態

redis-cli -p 7000 cluster info   // 查看節點詳細信息
redis-cli -p 7000 cluster nodes  // 查看所有節點
redis-cli -p 7000 cluster nodes | grep master  // 過濾出主節點
redis-cli -p 7000 cluster nodes | grep slave   // 過濾出從節點

 6、驗證集群

開兩個shell登陸redis實例

[root@localhost ~]# redis-cli -c -p 7000   // 登陸7000的實例
[root@localhost ~]# redis-cli -c -p 7003   // 登陸7003的實例

 

 --------------------------------------------------------------------------------到此redis集群就算簡單的實現了-----------------------------------------------------------------

參考文檔:https://redis.io/topics/cluster-tutorial

 


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

-Advertisement-
Play Games
更多相關文章
  • 一、前言 在項目的前端開發中,對於絕大多數的小伙伴來說,當然,也包括我,不可避免的需要在項目中使用到一些第三方的組件包。這時,團隊中的小伙伴是選擇直接去組件的官網上下載,還是圖省事直接在網上搜索,然後從一些來源不明的地方下載,我們就無法管控了。同時,我們添加的組件間可能存在各種依賴關係,如果我們沒有 ...
  • 安裝make工具 make工具依賴gcc ,automake,autoconf,libtool,make 這些安裝包 可以一起安裝 center os系統 運行如下命令yum install gcc automake autoconf libtool make ...
  • 500 Internal Privoxy Error Privoxy encountered an error while processing your request: Could not load template file no-server-data or one of its inclu ...
  • 我們可以使用在Windows下壓縮文件夾,然後到Linux系統下解壓縮的方式,完成整個上傳工作。 第一步:在Windows系統下,將整個文件夾壓縮成zip尾碼的壓縮包 方法一: 在文件夾xtemp上,右鍵,選中“發送到”--“壓縮(zipped)文件夾” 即可完成zip格式文件夾的壓縮 方法二: 在 ...
  • 幾乎所有的模電教材,第一章都會寫PN結與二極體,但是能寫到讓人完全讀懂的卻不多。我當年學模電的時候,曾經卡在這裡很長時間,一些概念貌似看明白了,但一深究就會覺得有些地方解釋不通,解釋不通的地方書本上又語焉不詳。直到很多年後才知道,這個其實涉及到蠻複雜的半導體材料學和量子力學機制,如果不是專門做模擬I ...
  • @ "TOC" 輸入輸出重定向 輸入重定向可以讓用戶將某個文件作為輸入設備,輸出重定向可以把某個文件作為輸出設備,從而使文件更加靈活 輸入重定向的符號使““和” "將輸入內容直接寫入指定文件==,“ ”叫做重定向附加, 和 最大區別就是他不會覆蓋文件而是在文件的最後附加內容。 例如: 例如: 管道功 ...
  • 2019-05-11 11:17:05 種一棵樹,最好的時間是十年前,其次就是現在。 十年前的我懵懵懂懂上著學,沒有想過今後的路要怎麼走,直到高中畢業都沒想明白自己到底要做什麼,選了財務專業,繼續大學生活。 畢業之後輾轉去了一家國企的下屬企業,待遇一般,人情味重,人際關係看似親密卻實在心累,要想著話 ...
  • ls命令 |命令選項|作用| |: :|: :| |ll| 顯示文件得詳細信息 | |ls a | 顯示文件和隱藏文件 | |ls t|以文件和目錄的更改時間排序| |ls m|用“,”號區隔每個文件目錄名稱| ll 是ls l的一個別命 最左面的 rw r r 表示用戶對文件的許可權, ( 表示普通 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...