Redis5.0.7羣集搭建(最新版實戰!!!)

實驗環境

兩臺Centos 7虛擬機,均添加三塊網卡用以模擬六臺服務器實景
服務器角色 IP地址
主節點M1 192.168.142.130
主節點M2 192.168.142.145
主節點M3 192.168.142.146
從節點S1 192.168.142.143
從節點S2 192.168.142.147
從節點S3 192.168.142.148

實驗步驟

第一步:安裝Redis

#安裝編譯環境
[root@localhost ~]# yum install gcc gcc-c++ make -y

#遠程掛載源碼包
[root@localhost ~]# mount.cifs //192.168.142.1/redis /mnt
Password for root@//192.168.142.1/redis:  

#解壓源碼包
[root@localhost ~]# cd /mnt
[root@localhost mnt]# tar zxvf redis-5.0.7.tar.gz -C /opt

#編譯與安裝
[root@localhost mnt]# cd /opt/redis-5.0.7/
[root@localhost redis-5.0.7]# make
[root@localhost redis-5.0.7]# make PREFIX=/usr/local/redis/ install

#建立服務命令軟鏈接到系統
[root@localhost redis-5.0.7]# ln -s /usr/redis/bin/* /usr/local/bin/

#切入utils目錄
[root@localhost redis-5.0.7]# cd /opt/redis-5.0.7/utils/

#執行啓動腳本
[root@localhost utils]# ./install_server.sh
#以下內容,默認回車即可
Welcome to the redis service installer
This script will help you easily set up a running redis server

Please select the redis port for this instance: [6379] 
Selecting default: 6379
Please select the redis config file name [/etc/redis/6379.conf] 
Selected default - /etc/redis/6379.conf
Please select the redis log file name [/var/log/redis_6379.log] 
Selected default - /var/log/redis_6379.log
Please select the data directory for this instance [/var/lib/redis/6379] 
Selected default - /var/lib/redis/6379
Please select the redis executable path [] /usr/local/redis/bin/redis-server
#此處需手動指定擴展目錄路徑/usr/local/redis/bin/redis-server

#使用進程控制啓動服務
[root@localhost utils]# /etc/init.d/redis_6379 start
Starting Redis server...

#配置redis的6379.conf文件,追加監聽地址
[root@localhost utils]# vim /etc/redis/6379.conf 

#註釋第70行的監聽127地址,已監聽所有地址
#bind 127.0.0.1 

#去掉第89行註釋關閉安全保護
protected-mode no

#去掉第93行註釋,開啓端口6379
port 6379

#去掉第137行註釋,以獨立進程啓動
daemonize yes

#去掉第833行註釋,開啓羣集功能
cluster-enabled yes

#去掉第841行註釋,羣集名稱文件設置
cluster-config-file nodes-6379.conf

#去掉第847行註釋,羣集超時時間設置
cluster-node-timeout 15000

#去掉第700行註釋,開啓aof持久化
appendonly yes

#重啓服務
[root@localhost utils]# /etc/init.d/redis_6379 restart
Stopping ...
Redis stopped
Starting Redis server...

第二步:主服務器安裝rvm組件

#導入key文件
[root@localhost utils]# gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3

#安裝rvm
[root@localhost utils]# curl -sSL https://get.rvm.io | bash -s stable

#執行環境變量
[root@localhost utils]# source /etc/profile.d/rvm.sh

#列出ruby可以安裝的版本
[root@localhost utils]# rvm list known

#安裝2.4.1 版本
[root@localhost utils]# rvm install 2.4.1

#使用rubyruby2.4.1 版本
[root@localhost utils]# rvm use 2.4.1
Using /usr/local/rvm/gems/ruby-2.4.1

#查看當前ruby2.4.1 版本
[root@localhost utils]# ruby -v
ruby 2.4.1p111 (2017-03-22 revision 58053) [x86_64-linux]

#再次安裝Redis
[root@localhost utils]# gem install redis

第三步:創建Redis集羣

#加入所有節點地址,並加6379端口號
[root@localhost utils]# redis-cli --cluster create 192.168.142.130:6379 192.168.142.145:6379 192.168.142.146:6379 192.168.142.143:6379 192.168.142.147:6379 192.168.142.148:6379 --cluster-replicas 1 

>>> Performing hash slots allocation on 6 nodes...
Master[0] -> Slots 0 - 5460
Master[1] -> Slots 5461 - 10922
Master[2] -> Slots 10923 - 16383
Adding replica 192.168.142.147:6379 to 192.168.142.130:6379
Adding replica 192.168.142.148:6379 to 192.168.142.145:6379
Adding replica 192.168.142.143:6379 to 192.168.142.146:6379
M: a27b43ec695099b36a5c79beae70cb0364f27338 192.168.142.130:6379
   slots:[0-5460] (5461 slots) master
M: a27b43ec695099b36a5c79beae70cb0364f27338 192.168.142.145:6379
   slots:[5461-10922] (5462 slots) master
M: a27b43ec695099b36a5c79beae70cb0364f27338 192.168.142.146:6379
   slots:[10923-16383] (5461 slots) master
S: b6d317c5f192bf84e8f464ffbf6481529cd0708a 192.168.142.143:6379
   replicates a27b43ec695099b36a5c79beae70cb0364f27338
S: b6d317c5f192bf84e8f464ffbf6481529cd0708a 192.168.142.147:6379
   replicates a27b43ec695099b36a5c79beae70cb0364f27338
S: b6d317c5f192bf84e8f464ffbf6481529cd0708a 192.168.142.148:6379
   replicates a27b43ec695099b36a5c79beae70cb0364f27338
Can I set the above configuration? (type 'yes' to accept): yes
>>> Nodes configuration updated
>>> Assign a different config epoch to each node
>>> Sending CLUSTER MEET messages to join the cluster
Waiting for the cluster to join

>>> Performing Cluster Check (using node 192.168.142.130:6379)
M: a27b43ec695099b36a5c79beae70cb0364f27338 192.168.142.130:6379
   slots:[0-16383] (16384 slots) master
   1 additional replica(s)
S: b6d317c5f192bf84e8f464ffbf6481529cd0708a 192.168.142.148:6379
   slots: (0 slots) slave
   replicates a27b43ec695099b36a5c79beae70cb0364f27338
[OK] All nodes agree about slots configuration.
>>> Check for open slots...
>>> Check slots coverage...
[OK] All 16384 slots covered.

第四步:驗證羣集讀寫

#從主節點計入數據庫寫數據
[root@localhost ~]# redis-cli -h 192.168.142.130 -p 6379
192.168.142.130:6379> set name yangjia
OK
192.168.142.130:6379> get name
"yangjia"

#從另一節點查看數據信息
[root@localhost ~]# redis-cli -h 192.168.142.146 -p 6379
192.168.142.146:6379> keys *
1) "name"
192.168.142.146:6379> get name
"yangjia"

#在從節點無法查看數據,提示切換主節點服務器地址
[root@localhost ~]# redis-cli -h 192.168.142.143 -p 6379
192.168.142.143:6379> keys *
1) "name"
192.168.142.143:6379> get name
(error) MOVED 5798 192.168.142.146:6379

在Redis集羣中,主節點服務器負責寫入數據,從節點服務器負責備份主節點服務器的實時數據

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章