初識redis-cluster

来源:https://www.cnblogs.com/chanAndy/archive/2018/10/27/9851512.html
-Advertisement-
Play Games

安裝redis 部署集群 參考資料 https://www.cnblogs.com/it-cen/p/4295984.html https://blog.csdn.net/naixiyi/article/details/51346880 https://www.cnblogs.com/Patrick ...


安裝redis

 1 [root@localhost ~]# cd /datas/soft/
 2 [root@localhost soft]# ll redis-5.0.0.tar.gz     // 已經下載的最新版
 3 -rwxrwxrwx 1 www www 1947721 Oct 22 14:21 redis-5.0.0.tar.gz
 4 [root@localhost soft]# tar -xzf redis-5.0.0.tar.gz
 5 [root@localhost soft]# cd redis-5.0.0
 6 [root@localhost redis-5.0.0]# make
 7 [root@localhost redis-5.0.0]# cd src
 8 [root@localhost src]# make install PREFIX=/datas/soft/redis5
 9 [root@localhost src]# mkdir /datas/soft/redis5/etc
10 [root@localhost src]# cp ../redis.conf /datas/soft/redis5/etc/
11 [root@localhost src]# vim redis.conf
12     daemonize yes  // 後臺運行
13 [root@localhost src]# cd /datas/soft/redis5/bin/
14 [root@localhost bin]# ./redis-server ../etc/redis.conf
15 16936:C 24 Oct 2018 20:01:42.406 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
16 16936:C 24 Oct 2018 20:01:42.406 # Redis version=5.0.0, bits=64, commit=00000000, modified=0, pid=16936, just started
17 16936:C 24 Oct 2018 20:01:42.406 # Configuration loaded
18 [root@localhost bin]# ps auxf | grep redis
19 root      16943  0.0  0.0 103304   872 pts/1    S+   20:02   0:00      |   \_ grep redis                     
20 root      16937  0.1  0.7 152484  7760 ?        Ssl  20:01   0:00 ./redis-server 127.0.0.1:6379
21 [root@localhost bin]# ./redis-cli -p 6379
22 127.0.0.1:6379> set a hahaha6379
23 OK
24 127.0.0.1:6379> get a
25 "hahaha6379"

部署集群

  1 [root@localhost bin]# cd ../etc
  2 [root@localhost etc]# mkdir redis-cluster
  3 [root@localhost etc]# cd redis-cluster
  4 [root@localhost redis-cluster]# mkdir 30001
  5 [root@localhost redis-cluster]# cd 30001
  6 [root@localhost 30001]# cp ../../redis.conf ./
  7 [root@localhost 30001]# vim redis.conf
  8     port 30001  // 綁定埠號
  9     daemonize yes  // 後臺運行
 10     pidfile /datas/soft/redis5/etc/redis-cluster/30001/redis.pid  // 修改pid進程文件名
 11     logfile /datas/soft/redis5/etc/redis-cluster/30001/redis.log  // 修改日誌文件名稱
 12     dir /datas/soft/redis5/etc/redis-cluster/30001/  // 修改數據文件存放地址
 13     cluster-enabled yes  // 啟用集群
 14     cluster-config-file nodes-30001.conf  // 配置每個節點的配置文件,同樣以埠號為名稱
 15     cluster-node-timeout 15000  // 配置集群節點的超時時間,可改可不改
 16     appendonly yes  // 啟動AOF增量持久化策略
 17     appendfsync always  // 發生改變就記錄日誌
 18 [root@localhost redis-cluster]# ll    // 相同步驟配置其他埠
 19 total 24
 20 drwxr-xr-x 2 root root 4096 Oct 24 21:34 30001
 21 drwxr-xr-x 2 root root 4096 Oct 24 21:34 30002
 22 drwxr-xr-x 2 root root 4096 Oct 24 21:35 30003
 23 drwxr-xr-x 2 root root 4096 Oct 24 21:35 30004
 24 drwxr-xr-x 2 root root 4096 Oct 24 21:35 30005
 25 drwxr-xr-x 2 root root 4096 Oct 24 21:35 30006
 26 [root@localhost redis-cluster]# /datas/soft/redis5/bin/redis-server /datas/soft/redis5/etc/redis-cluster/30001/redis.conf      // 啟動
 27 [root@localhost redis-cluster]# /datas/soft/redis5/bin/redis-server /datas/soft/redis5/etc/redis-cluster/30002/redis.conf 
 28 [root@localhost redis-cluster]# /datas/soft/redis5/bin/redis-server /datas/soft/redis5/etc/redis-cluster/30003/redis.conf 
 29 [root@localhost redis-cluster]# /datas/soft/redis5/bin/redis-server /datas/soft/redis5/etc/redis-cluster/30004/redis.conf 
 30 [root@localhost redis-cluster]# /datas/soft/redis5/bin/redis-server /datas/soft/redis5/etc/redis-cluster/30005/redis.conf 
 31 [root@localhost redis-cluster]# /datas/soft/redis5/bin/redis-server /datas/soft/redis5/etc/redis-cluster/30006/redis.conf 
 32 [root@localhost redis-cluster]# ps auxf | grep redis
 33 root      17034  0.0  0.0 103304   876 pts/1    S+   21:38   0:00      |   \_ grep redis
 34 root      16937  0.2  1.0 158116 10400 ?        Ssl  20:01   0:13 ./redis-server 127.0.0.1:6379   
 35 root      16997  0.9  0.7 155552  7952 ?        Ssl  21:38   0:00 /datas/soft/redis5/bin/redis-server 127.0.0.1:30001 [cluster]                            
 36 root      17003  0.6  0.7 155552  7952 ?        Ssl  21:38   0:00 /datas/soft/redis5/bin/redis-server 127.0.0.1:30002 [cluster]                            
 37 root      17008  0.6  0.7 155552  7968 ?        Ssl  21:38   0:00 /datas/soft/redis5/bin/redis-server 127.0.0.1:30003 [cluster]                            
 38 root      17013  0.6  1.2 159648 12100 ?        Ssl  21:38   0:00 /datas/soft/redis5/bin/redis-server 127.0.0.1:30004 [cluster]                            
 39 root      17020  0.4  1.2 159648 12120 ?        Ssl  21:38   0:00 /datas/soft/redis5/bin/redis-server 127.0.0.1:30005 [cluster]                            
 40 root      17027  0.7  1.2 159648 12104 ?        Ssl  21:38   0:00 /datas/soft/redis5/bin/redis-server 127.0.0.1:30006 [cluster]                            
 41 [root@localhost redis-cluster]# ll /datas/soft/redis5/etc/redis-cluster/30001/
 42 total 88
 43 -rw-r--r-- 1 root root     0 Oct 22 15:01 appendonly.aof
 44 -rw-r--r-- 1 root root   175 Oct 24 21:38 dump.rdb
 45 -rw-r--r-- 1 root root   787 Oct 24 21:38 nodes-30001.conf
 46 -rwxr-xr-x 1 root root 62271 Oct 24 21:34 redis.conf
 47 -rw-r--r-- 1 root root 10257 Oct 24 21:38 redis.log
 48 -rw-r--r-- 1 root root     6 Oct 24 21:38 redis.pid
 49 
 50 [root@localhost redis-cluster]# cd ../../bin/
 51 [root@localhost bin]# yum install -y ruby
 52 [root@localhost bin]# yum install -y rubygems
 53 [root@localhost bin]# cp /datas/soft/redis-5.0.0/src/redis-trib.rb ./
 54 [root@localhost bin]# ruby redis-trib.rb create --replicas 1 127.0.0.1:30001 127.0.0.1:30002 127.0.0.1:30003 127.0.0.1:30004 127.0.0.1:30005 127.0.0.1:30006
 55 redis-trib.rb:6: odd number list for Hash
 56         white: 29,
 57               ^
 58 redis-trib.rb:6: syntax error, unexpected ':', expecting '}'
 59         white: 29,
 60               ^
 61 redis-trib.rb:7: syntax error, unexpected ',', expecting kEND
 62 [root@localhost bin]# ruby -v
 63 ruby 1.8.7 (2013-06-27 patchlevel 374) [x86_64-linux]
 64 [root@localhost bin]# yum remove -y ruby
 65 [root@localhost bin]# yum remove -y rubygems
 66 [root@localhost bin]# cd /datas/soft/
 67 [root@localhost soft]# ll ruby-2.4.5.tar.gz     // ruby最新版
 68 -rwxr-xr-x   1 root root 14232887 Oct 24 19:33 ruby-2.4.5.tar.gz
 69 [root@localhost soft]# tar -xzf ruby-2.4.5.tar.gz
 70 [root@localhost soft]# cd ruby-2.4.5
 71 [root@localhost ruby-2.4.5]# ./configure
 72 [root@localhost ruby-2.4.5]# make
 73 [root@localhost ruby-2.4.5]# make install
 74 [root@localhost ruby-2.4.5]# ruby -v
 75 ruby 2.4.5p335 (2018-10-18 revision 65137) [x86_64-linux]
 76 [root@localhost ruby-2.4.5]# cd /datas/soft/redis5/bin/
 77 [root@localhost bin]# ruby redis-trib.rb create --replicas 1 127.0.0.1:30001 127.0.0.1:30002 127.0.0.1:30003 127.0.0.1:30004 127.0.0.1:30005 127.0.0.1:30006
 78 WARNING: redis-trib.rb is not longer available!
 79 You should use redis-cli instead.
 80 
 81 All commands and features belonging to redis-trib.rb have been moved
 82 to redis-cli.
 83 In order to use them you should call redis-cli with the --cluster
 84 option followed by the subcommand name, arguments and options.
 85 
 86 Use the following syntax:
 87 redis-cli --cluster SUBCOMMAND [ARGUMENTS] [OPTIONS]
 88 
 89 Example:
 90 redis-cli --cluster create 127.0.0.1:30001 127.0.0.1:30002 127.0.0.1:30003 127.0.0.1:30004 127.0.0.1:30005 127.0.0.1:30006 --cluster-replicas 1
 91 
 92 To get help about all subcommands, type:
 93 redis-cli --cluster help
 94 
 95 [root@localhost bin]# ./redis-cli --cluster create 127.0.0.1:30001 127.0.0.1:30002 127.0.0.1:30003 127.0.0.1:30004 127.0.0.1:30005 127.0.0.1:30006 --cluster-replicas 1
 96 >>> Performing hash slots allocation on 6 nodes...
 97 Master[0] -> Slots 0 - 5460
 98 Master[1] -> Slots 5461 - 10922
 99 Master[2] -> Slots 10923 - 16383
100 Adding replica 127.0.0.1:30004 to 127.0.0.1:30001
101 Adding replica 127.0.0.1:30005 to 127.0.0.1:30002
102 Adding replica 127.0.0.1:30006 to 127.0.0.1:30003
103 >>> Trying to optimize slaves allocation for anti-affinity
104 [WARNING] Some slaves are in the same host as their master
105 M: 0ef9bb46603bc2703e2f812316b2d17e4664a285 127.0.0.1:30001
106    slots:[0-5460] (5461 slots) master
107 M: 1cce19c5b8f58666199445ee858b0a699cf523f9 127.0.0.1:30002
108    slots:[5461-10922] (5462 slots) master
109 M: 040afde427d4df0738b4705006309fc171403613 127.0.0.1:30003
110    slots:[10923-16383] (5461 slots) master
111 S: 7bb7a15f22730493cd7c66954a39e4008788c879 127.0.0.1:30004
112    replicates 1cce19c5b8f58666199445ee858b0a699cf523f9
113 S: c08daea6c990cb2732d95ae03c201c94523c0eff 127.0.0.1:30005
114    replicates 040afde427d4df0738b4705006309fc171403613
115 S: 7acc8a1f489ec954f069f998792eea8982653e70 127.0.0.1:30006
116    replicates 0ef9bb46603bc2703e2f812316b2d17e4664a285
117 Can I set the above configuration? (type 'yes' to accept): yes
118 >>> Nodes configuration updated
119 >>> Assign a different config epoch to each node
120 >>> Sending CLUSTER MEET messages to join the cluster
121 Waiting for the cluster to join
122 ..
123 >>> Performing Cluster Check (using node 127.0.0.1:30001)
124 M: 0ef9bb46603bc2703e2f812316b2d17e4664a285 127.0.0.1:30001
125    slots:[0-5460] (5461 slots) master
126    1 additional replica(s)
127 S: 7bb7a15f22730493cd7c66954a39e4008788c879 127.0.0.1:30004
128    slots: (0 slots) slave
129    replicates 1cce19c5b8f58666199445ee858b0a699cf523f9
130 M: 1cce19c5b8f58666199445ee858b0a699cf523f9 127.0.0.1:30002
131    slots:[5461-10922] (5462 slots) master
132    1 additional replica(s)
133 S: 7acc8a1f489ec954f069f998792eea8982653e70 127.0.0.1:30006
134    slots: (0 slots) slave
135    replicates 0ef9bb46603bc2703e2f812316b2d17e4664a285
136 S: c08daea6c990cb2732d95ae03c201c94523c0eff 127.0.0.1:30005
137    slots: (0 slots) slave
138    replicates 040afde427d4df0738b4705006309fc171403613
139 M: 040afde427d4df0738b4705006309fc171403613 127.0.0.1:30003
140    slots:[10923-16383] (5461 slots) master
141    1 additional replica(s)
142 [OK] All nodes agree about slots configuration.
143 >>> Check for open slots...
144 >>> Check slots coverage...
145 [OK] All 16384 slots covered.
146 [root@localhost bin]# ./redis-cli -c -p 30001
147 127.0.0.1:30001> set a hahahaha30001
148 -> Redirected to slot [15495] located at 127.0.0.1:30003
149 OK
150 127.0.0.1:30003> get a
151 "hahahaha30001"
152 127.0.0.1:30003> 
153 [root@localhost bin]# ./redis-cli -c -p 30006
154 127.0.0.1:30006> get a
155 -> Redirected to slot [15495] located at 127.0.0.1:30003
156 "hahahaha30001"
157 127.0.0.1:30003>

參考資料

https://www.cnblogs.com/it-cen/p/4295984.html

https://blog.csdn.net/naixiyi/article/details/51346880

https://www.cnblogs.com/PatrickLiu/p/8458788.html

http://www.runoob.com/ruby/ruby-installation-unix.html

https://blog.csdn.net/vtopqx/article/details/50235737

 


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

-Advertisement-
Play Games
更多相關文章
  • 那啥,半個月沒開電腦了,這幾天打開發現系統沒聲了 那咋辦呢,修一修唄 搜索了下問題,還挺簡單的 1 jiang@ryzen:~$ sudo apt install pavucontrol 打開 1 jiang@ryzen:~$ sudo pavucontrol 大概就是長這樣 基本上只要在 回放 和 ...
  • 出現問題: 最近打開系統之後沒聲兒,抽空解決以下,誰知道安裝的時候出現了這個問題,一看就是鎖被占了唄 直接重啟大法。。。。。不行,看來是鎖分配出問題了,找了個解鎖命令 不行,沒用。。。。 思考一下:這些被占用的目錄都是關於包安裝的,簡單的說,包安裝的第一步應該就是拿到目錄然後下載一些包的信息,然後下 ...
  • 1 前景回顧 1.1 進程調度 記憶體中保存了對每個進程的唯一描述, 並通過若幹結構與其他進程連接起來. 調度器 面對的情形就是這樣, 其任務是在程式之間共用CPU時間, 創造並行執行的錯覺, 該任務分為兩個不同的部分, 其中一個涉及 調度策略 , 另外一個涉及 上下文切換 . 內核必須提供一種方法, ...
  • mke2fs 在磁碟分區上創建ext2、ext3、ext4文件系統,預設情況下會創建ext2。此命令的適用範圍:RedHat、RHEL、Ubuntu、CentOS、SUSE、openSUSE、Fedora。 1、語法 mke2fs [選項] [設備] mke2fs [ -c | -l filenam ...
  • 1. 購買了VPS,CentOS系統,發現伺服器時間與北京時間往往不一致,存在時差。 2. 可以執行tzselect命令按提示更換時區,依次選擇5 Asia,9 China,1 Beijing Time。 3. 將 這行添加到/etc/profile(所有用戶生效)或者~/.bash_profile ...
  • 一。win10系統下c盤,program 文件下 軟體一般為32 或者 64位,但是現在win10系統有些C盤會顯示program x86 向這種情況的話我們的軟體預設安裝在這個盤的話可能會造成很多文件消失,但是功能依舊存在!!! 從文件所在位置可以看到安裝目錄部分文件,但是返回上一級則會消失(位數 ...
  • nbtstat -A ip 對方136到139其中一個埠開了的話,就可查看對方最近登陸的用戶名(03前的為用戶名)-註意:參數-A要大寫 tracert -參數 ip(或電腦名) 跟蹤路由(數據包),參數:“-w數字”用於設置超時間隔。 ping ip(或功能變數名稱) 向對方主機發送預設大小為32位元組 ...
  • 第1節 查看當前系統版本及內核 cat /etc/redhat-release (查看系統版本) CentOS Linux release 7.4.1708 (Core) uname -r (查看系統內核) 3.10.0-693.el7.x86_64 uname -a (查看當前操作系統) x86_ ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...