1. 程式人生 > >Windows下搭建Redis集群

Windows下搭建Redis集群

files 兩個 oci 配置文件 create cas eas ont 線程

Windows下搭建Redis集群

Redis集群:

 如果部署到多臺電腦,就跟普通的集群一樣;因為Redis是單線程處理的,多核CPU也只能使用一個核,

所以部署在同一臺電腦上,通過運行多個Redis實例,並將這些實例組成集群,就可以提高CPU的利用率。

在Windows系統下搭建Redis集群:

需要4個部件:

Redis、Ruby語言運行環境、Redis的Ruby驅動redis-3.2.2.gem、創建Redis集群的工具redis-trib.rb

安裝Redis,並運行3個實例(Redis集群需要至少3個以上節點,低於3個無法創建);

使用redis-trib.rb工具來創建Redis集群,由於該文件是用ruby語言寫的,所以需要安裝Ruby開發環境,以及驅動redis-3.2.2.gem

1.下載並安裝Redis

其GitHub路徑如下:https://github.com/MSOpenTech/redis/releases/

Redis提供msi和zip格式的下載文件,這裏下載zip格式 3.0.504版本

將下載到的Redis-x64-3.0.504.zip解壓即可,為了方便使用,將目錄名改為Redis,並放在D盤根目錄下(D:/Redis),

通過配置文件來啟動3個不同的Redis實例,由於Redis默認端口為6379,所以這裏使用了6380、6381、6382來運行3個Redis實例。

註意:為了避免不必要的錯誤,請將配置文件保存為utf8格式,並且不要包含註釋;

為了記錄Redis的日誌,所以需要在Redis目錄D:/Redis下新建 Logs文件夾

redis.6380.conf 內容如下:

port 6380      
loglevel notice    
logfile "D:/Redis/Logs/redis6380_log.txt"       
appendonly yes
appendfilename "appendonly.6380.aof"   
cluster-enabled yes                                    
cluster-config-file nodes.6380.conf
cluster-node-timeout 15000
cluster-slave-validity-factor 10
cluster-migration-barrier 1
cluster-require-full-coverage yes

redis.6381.conf 內容如下:

port 6381       
loglevel notice   
logfile "D:/Redis/Logs/redis6381_log.txt"       
appendonly yes
appendfilename "appendonly.6381.aof"    
cluster-enabled yes                                    
cluster-config-file nodes.6381.conf
cluster-node-timeout 15000
cluster-slave-validity-factor 10
cluster-migration-barrier 1
cluster-require-full-coverage yes

redis.6382.conf 內容如下:

port 6382       
loglevel notice    
logfile "D:/Redis/Logs/redis6382_log.txt"         
appendonly yes
appendfilename "appendonly.6382.aof"    
cluster-enabled yes                                    
cluster-config-file nodes.6382.conf
cluster-node-timeout 15000
cluster-slave-validity-factor 10
cluster-migration-barrier 1
cluster-require-full-coverage yes

配置內容的解釋如下:

 port 6380               #端口號
 loglevel notice         #日誌的記錄級別,notice是適合生產環境的
 logfile "D:/Redis/Logs/redis6380_log.txt"      #指定log的保持路徑,默認是創建在Redis安裝目錄下,如果有子目錄需要手動創建,如此處的Logs目錄
 syslog-enabled yes                       #是否使用系統日誌
 syslog-ident redis6380                   #在系統日誌的標識名
 appendonly yes                           #數據的保存為aof格式
 appendfilename "appendonly.6380.aof"     #數據保存文件
 cluster-enabled yes                      #是否開啟集群
 cluster-config-file nodes.6380.conf
 cluster-node-timeout 15000
 cluster-slave-validity-factor 10
 cluster-migration-barrier 1
 cluster-require-full-coverage yes

將上述配置文件保存到D:/Redis目錄下,並使用這些配置文件安裝3個redis服務,命令如下:

註意:redis.6380.conf等配置文件要使用完整路徑,避免重啟Redis集群出現問題,此處的安裝目錄為 D:/Redis

D:/Redis/redis-server.exe --service-install D:/Redis/redis.6380.conf --service-name redis6380
D:/Redis/redis-server.exe --service-install D:/Redis/redis.6381.conf --service-name redis6381
D:/Redis/redis-server.exe --service-install D:/Redis/redis.6382.conf --service-name redis6382

啟動這3個服務,命令如下:

D:/Redis/redis-server.exe --service-start --service-name Redis6382
D:/Redis/redis-server.exe --service-start --service-name Redis6381
D:/Redis/redis-server.exe --service-start --service-name Redis6380

執行結果:

技術分享圖片

2.下載並安裝ruby

  2.1. 下載路徑如下:

http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.4-x64.exe

下載後,雙擊安裝即可,為了操作方便,安裝到 C盤根目錄下(C:\Ruby22-x64),

安裝時選中以下兩個選項:

Add ruby executables to your PATH

Associate .rb and .rbw files with this Ruby installation

意思是將ruby添加到系統的環境變量中,在cmd命令中能直接使用ruby的命令;並主動關聯.rb和.rbw格式的文件。

技術分享圖片

2.2.下載ruby環境下Redis的驅動,考慮到兼容性,這裏下載的是3.2.2版本

https://rubygems.org/gems/redis/versions/3.2.2

註意:下載在頁面右下角相關連接一項中

技術分享圖片

安裝該驅動,命令如下:

C:\Ruby22-x64\bin\gem install --local c:\Ruby22-x64\redis-3.2.2.gem

技術分享圖片

2.3.下載Redis官方提供的創建Redis集群的ruby腳本文件redis-trib.rb,路徑如下:

https://raw.githubusercontent.com/MSOpenTech/redis/3.0/src/redis-trib.rb

打開該鏈接如果沒有下載,而是打開一個頁面,那麽將該頁面保存為redis-trib.rb (.rb為後綴名,是ruby文件的保存格式),並保存到D:/Redis目錄下。

3.創建Redis集群

CMD下切換到Redis目錄,使用redis-trib.rb來創建Redis集群:

redis-trib.rb create --replicas 0 127.0.0.1:6380 127.0.0.1:6381 127.0.0.1:6382

註意:因為redis-trib.rb是ruby代碼,必須用ruby來打開,若redis-trib.rb無法識別,需要手動選擇該文件的打開方式:

技術分享圖片

技術分享圖片

**選擇ruby為的打開方式後,redis-trib.rb的logo都會發生改變,如下圖:

技術分享圖片

執行結果:

技術分享圖片

當出現提示時,需要手動輸入yes,輸入後,當出現以下內容,說明已經創建了Redis集群

技術分享圖片

檢驗是否真的創建成功,輸入以下命令:

redis-trib.rb check 127.0.0.1:6380

出現以下信息,說明創建的Redis集群是沒問題的

技術分享圖片

使用Redis客戶端Redis-cli.exe來查看數據記錄數,以及集群相關信息

D:/Redis/redis-cli.exe -c -p 6380

-c 表示 cluster

-p 表示 port 端口號

技術分享圖片

輸入dbsize查詢 記錄總數

dbsize

或者一次輸入完整命令:

D:/Redis/redis-cli.exe -c -p 6380 dbsize

結果如下:

技術分享圖片

輸入cluster info可以從客戶端的查看集群的信息:

cluster info

結果如下:

技術分享圖片

Windows下搭建Redis集群