Linux(Centos7)下redis5集羣搭建和使用

 

一、簡要說明

 

2018年十月 Redis 發佈了穩定版本的 5.0 版本,推出了各類新特性,其中一點是放棄 Ruby的集羣方式,改成 使用 C語言編寫的 redis-cli的方式,是集羣的構建方式複雜度大大下降。關於集羣的更新能夠在 Redis5 的版本說明中看到,以下:node

The cluster manager was ported from Ruby (redis-trib.rb) to C code inside redis-cli. check `redis-cli --cluster help ` for more info.

能夠查看Redis官網查看集羣搭建方式,鏈接以下redis

https://redis.io/topics/cluster-tutorialvim

 

集羣中應該至少有三個節點,每一個節點有一備份節點。須要6臺服務器。服務器

若是條件有限,能夠搭建僞分佈式,如下步驟是在一臺 Linux 服務器上搭建有6個節點的 Redis集羣。app

二、建立集羣步驟

2.一、建立目錄

        新建目錄:mkdir /usr/local/redis-cluster分佈式

2.二、下載源碼並解壓編譯

 

 

​wget http://download.redis.io/releases/redis-5.0.0.tar.gz
tar xzf redis-5.0.0.tar.gz
cd redis-5.0.0
make
make install PREFIX=/usr/local/redis

 

三、建立6個Redis配置文件

    6個配置文件不能在同一個目錄,此處咱們定義以下:ide

/root/software/redis/redis-cluster-conf/7001/redis.conf
/root/software/redis/redis-cluster-conf/7002/redis.conf
/root/software/redis/redis-cluster-conf/7003/redis.conf
/root/software/redis/redis-cluster-conf/7004/redis.conf
/root/software/redis/redis-cluster-conf/7005/redis.conf
/root/software/redis/redis-cluster-conf/7006/redis.conf

一些操做命令僅供參考:工具

cp redis.conf /usr/local/redis/bin
cd /usr/local/redis/
cp -r bin ../redis-cluster/redis01
cd /usr/local/redis-cluster/redis01
rm dump.rdb #刪除快照
vim redis.conf  

 

配置文件的內容爲:測試

port 7001  #端口
cluster-enabled yes #啓用集羣模式
cluster-config-file nodes.conf
cluster-node-timeout 5000 #超時時間
appendonly yes
daemonize yes #後臺運行
protected-mode no #非保護模式
pidfile  /var/run/redis_7001.pid
bind 172.20.10.7 #127.0.0.1改成本機ip地址,可用ifconfig查看ip

其中 port 和 pidfile 須要隨着 文件夾的不一樣調增。spa

建立剩餘5個實例:

[root@master redis-cluster]# cp -r redis01/ redis02
[root@master redis-cluster]# cp -r redis01/ redis03
[root@master redis-cluster]# cp -r redis01/ redis04
[root@master redis-cluster]# cp -r redis01/ redis05
[root@master redis-cluster]# cp -r redis01/ redis06

分別修改redis02 ~ redis06 的 redis.conf下的port 和 pidfile 

四、啓動節點

分別進入redis01、redis02...redis06目錄,執行: ./redis-server ./redis.conf

建立一個批處理文件,同時啓動着六個Redis

vim startall.sh

添加以下內容:

cd redis01
./redis-server redis.conf
cd ..
cd redis02
./redis-server redis.conf
cd ..
cd redis03
./redis-server redis.conf
cd ..
cd redis04
./redis-server redis.conf
cd ..
cd redis05
./redis-server redis.conf
cd ..
cd redis06
./redis-server redis.conf
cd ..

而後執行chmod u+x start-all.sh將start-all.sh變成可執行文件

在當前目錄下啓動: ./startall.sh

查看:ps aux|grep redis

五、啓動集羣

由於咱們使用的5.0.0的版本的Redis搭建的集羣只須要把編譯後的redis目錄中的這個redis-cli文件拷貝到redis-cluster目錄過來便可。(Redis版本5.0之後都是用C語言直接啓動)

/usr/local/redis-cluster/redis-cli --cluster create 172.20.10.7:7001 172.20.10.7:7002 172.20.10.7:7003 172.20.10.7:7004 172.20.10.7:7005 172.20.10.7:7006 --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 172.20.10.7:7004 to 172.20.10.7:7001
Adding replica 172.20.10.7:7005 to 172.20.10.7:7002
Adding replica 172.20.10.7:7006 to 172.20.10.7:7003
>>> Trying to optimize slaves allocation for anti-affinity
[WARNING] Some slaves are in the same host as their master
M: a4128b5e581c3722acd9b093c5f29f5056f680b0 172.20.10.7:7001
slots:[0-5460] (5461 slots) master
M: d6fed6f21269b8469a3076ac5fb168bd20f70c26 172.20.10.7:7002
slots:[5461-10922] (5462 slots) master
M: 51a0f62dacead745ce5351cdbe0bdbae553ce413 172.20.10.7:7003
slots:[10923-16383] (5461 slots) master
S: 45cc35740ac67f7988bb75325871ba12d08a76e4 172.20.10.7:7004
replicates a4128b5e581c3722acd9b093c5f29f5056f680b0
S: 668054fe16cdf8741152cae863f5c636ed18b803 172.20.10.7:7005
replicates d6fed6f21269b8469a3076ac5fb168bd20f70c26
S: ae39b7db285703f8c08412d6b04998c60a634295 172.20.10.7:7006
replicates 51a0f62dacead745ce5351cdbe0bdbae553ce413
Can I set the above configuration? (type 'yes' to accept):yes

輸入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 172.20.10.7:7001)
M: a4128b5e581c3722acd9b093c5f29f5056f680b0 172.20.10.7:7001
slots:[0-5460] (5461 slots) master
1 additional replica(s)
M: d6fed6f21269b8469a3076ac5fb168bd20f70c26 172.20.10.7:7002
slots:[5461-10922] (5462 slots) master
1 additional replica(s)
S: 45cc35740ac67f7988bb75325871ba12d08a76e4 172.20.10.7:7004
slots: (0 slots) slave
replicates a4128b5e581c3722acd9b093c5f29f5056f680b0
M: 51a0f62dacead745ce5351cdbe0bdbae553ce413 172.20.10.7:7003
slots:[10923-16383] (5461 slots) master
1 additional replica(s)
S: 668054fe16cdf8741152cae863f5c636ed18b803 172.20.10.7:7005
slots: (0 slots) slave
replicates d6fed6f21269b8469a3076ac5fb168bd20f70c26
S: ae39b7db285703f8c08412d6b04998c60a634295 172.20.10.7:7006
slots: (0 slots) slave
replicates 51a0f62dacead745ce5351cdbe0bdbae553ce413
[OK] All nodes agree about slots configuration.
>>> Check for open slots...
>>> Check slots coverage...
[OK] All 16384 slots covered.

至此,Reids5 集羣搭建完成。

 

六、集羣的操做

6.一、關閉集羣

方法一: 

  redis5 提供了關閉集羣的工具,在以下目錄:

/root/redis-5.0.0/utils/create-cluster

   打開此文件修改端口爲咱們本身的,以下所示:

端口PROT設置爲7000,NODES爲6,工具會自動累加1 生成 7001-7006 六個節點 用於操做。

往下看再修改路徑 和 添加 ip地址,若是不加會默認本地127.0.0.1

修改後,執行以下命令關閉集羣:

/root/redis-5.0.0/utils/create-cluster/create-cluster stop

 

方法二:

create-cluster目錄下編寫腳本文件:vim shutdown.sh
內容以下:
/usr/local/redis-cluster/redis-cli -c -h 172.20.10.7 -p 7001 shutdown
/usr/local/redis-cluster/redis-cli -c -h 172.20.10.7 -p 7002 shutdown
/usr/local/redis-cluster/redis-cli -c -h 172.20.10.7 -p 7003 shutdown
/usr/local/redis-cluster/redis-cli -c -h 172.20.10.7 -p 7004 shutdown
/usr/local/redis-cluster/redis-cli -c -h 172.20.10.7 -p 7005 shutdown
/usr/local/redis-cluster/redis-cli -c -h 172.20.10.7 -p 7006 shutdown

而後執行chmod u+x shutdown.sh將shutdown.sh變成可執行文件

在當前目錄下啓動: ./shutdown.sh

查看:ps aux|grep redis

 

官方:/usr/local/redis-cluster/redis-cli -a xxx -c -h 192.168.5.100 -p 8001

提示:-a訪問服務端密碼,-c表示集羣模式,-h指定ip地址,-p指定端口號

 

6.二、從新啓動集羣

/root/redis-5.0.0/utils/create-cluster/create-cluster start

6.三、使用腳本文件啓動集羣 

vim startall.sh 追加以下內容:(記得改本身ip地址)

/usr/local/redis-cluster/redis-cli --cluster create 172.20.10.7:7001 172.20.10.7:7002 172.20.10.7:7003 172.20.10.7:7004 172.20.10.7:7005 172.20.10.7:7006 --cluster-replicas 1

 啓動:./startall.sh

七、測試集羣

redis-cluster目錄下執行

redis01/redis-cli -h 192.168.25.153 -p 7002 -c

其中-c表示以集羣方式鏈接redis-h指定ip地址,-p指定端口號

cluster nodes 查詢集羣結點信息

cluster info 查詢集羣狀態信息

 

 

八、測試代碼

    @Test
    public void testJedisCluster() {
        //集羣結點
        HashSet<HostAndPort> nodes = new HashSet<>();
        nodes.add(new HostAndPort("172.20.10.7", 7001));
        nodes.add(new HostAndPort("172.20.10.7", 7002));
        nodes.add(new HostAndPort("172.20.10.7", 7003));
        nodes.add(new HostAndPort("172.20.10.7", 7004));
        nodes.add(new HostAndPort("172.20.10.7", 7005));
        nodes.add(new HostAndPort("172.20.10.7", 7006));
        
        JedisCluster cluster = new JedisCluster(nodes);
        
        cluster.set("name", "zhangsan");
        String str = cluster.get("name");
        System.out.println(str);
        
        cluster.close();
    }

 

 

 

參考文章:https://my.oschina.net/ruoli/blog/2252393

相關文章
相關標籤/搜索