博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
redis4.0.6集群搭建
阅读量:5896 次
发布时间:2019-06-19

本文共 3894 字,大约阅读时间需要 12 分钟。

文件环境:CentOS7 + redis4.0.6

 

先去官网下载redis:https://redis.io/,然后上传到你的虚拟机,我上传到了/mysoft

先解压-》然后进入主目录-》安装

安装完,进入src目录,将文件复制到目录

进入目录,在这里我们建立一个redis集群文件夹,以及用来存放节点配置文件的三个文件夹7001,7002,7003。

 

将redis主目录里面的配置文件拷贝到这三个文件夹

vim 7001/redis.conf

注意:如果不把bind的127.0.0.1改成网络ip,之后进行的工作会报错,如下,can't connect ...

对于上面的步骤,两台机器各安装一个redis,六个配置文件都要改,注意ip和端口。

接下来我们的目标是,可是这个需要ruby环境(一台机器安装即可)。更需要2.2.2以上版本,然而centos7只能yum2.0.0,所以为了不让大家采坑,我们跳过网络上的教程,如下

,如果大家不信,我给你们看这种方式安装的问题

打开rvm官网:http://rvm.io/

复制上面两段话到虚拟机

安装完之后

可以看到最高2.4.1(与官网不太一致哦注意,此时官网已经公布2.5.0)

 下面安装

 

开启防火墙端口

[root@localhost redis-cluster]# firewall-cmd --zone=public --add-port=7001/tcp --permanentsuccess[root@localhost redis-cluster]# firewall-cmd --zone=public --add-port=7002/tcp --permanentsuccess[root@localhost redis-cluster]# firewall-cmd --zone=public --add-port=7003/tcp --permanentsuccess[root@localhost redis-cluster]# systemctl restart firewalld
[root@localhost redis-cluster]# firewall-cmd --zone=public --add-port=7004/tcp --permanentsuccess[root@localhost redis-cluster]# firewall-cmd --zone=public --add-port=7005/tcp --permanentsuccess[root@localhost redis-cluster]# firewall-cmd --zone=public --add-port=7006/tcp --permanentsuccess[root@localhost redis-cluster]# systemctl restart firewalld

 

netstat -tunlp | grep redis

 

利用上面的命令查看启动情况

最后执行集群操作(安装ruby就是为了安装redis gem,而redis gem 是为了能运行redis-trib.rb

[root@localhost redis-cluster]# redis-trib.rb create --replicas 1 192.168.127.129:7001 192.168.127.129:7002 192.168.127.129:7003 192.168.127.130:7004 192.168.127.130:7005 192.168.127.130:7006

 

>>> Creating cluster>>> Performing hash slots allocation on 6 nodes...Using 3 masters:192.168.127.129:7001192.168.127.130:7004192.168.127.129:7002Adding replica 192.168.127.130:7005 to 192.168.127.129:7001Adding replica 192.168.127.129:7003 to 192.168.127.130:7004Adding replica 192.168.127.130:7006 to 192.168.127.129:7002M: 0383b1fbe71d8f4349a094711896632f5c54b40c 192.168.127.129:7001   slots:0-5460 (5461 slots) masterM: 3811c6a22253dfc65d251d9408eb98d67e1452dd 192.168.127.129:7002   slots:10923-16383 (5461 slots) masterS: cd061c004d5e369674959ac904c8388f81ae9d9b 192.168.127.129:7003   replicates 822306088f036ee5e27fbe53420e2160f06408eaM: 822306088f036ee5e27fbe53420e2160f06408ea 192.168.127.130:7004   slots:5461-10922 (5462 slots) masterS: 7580e123ca9eff829540e5e7cd34afcbab5b2b64 192.168.127.130:7005   replicates 0383b1fbe71d8f4349a094711896632f5c54b40cS: 7914649b247bd38dacf8adb5d16460d02b02fb05 192.168.127.130:7006   replicates 3811c6a22253dfc65d251d9408eb98d67e1452ddCan 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 clusterWaiting for the cluster to join.......>>> Performing Cluster Check (using node 192.168.127.129:7001)M: 0383b1fbe71d8f4349a094711896632f5c54b40c 192.168.127.129:7001   slots:0-5460 (5461 slots) master   1 additional replica(s)S: cd061c004d5e369674959ac904c8388f81ae9d9b 192.168.127.129:7003   slots: (0 slots) slave   replicates 822306088f036ee5e27fbe53420e2160f06408eaS: 7914649b247bd38dacf8adb5d16460d02b02fb05 192.168.127.130:7006   slots: (0 slots) slave   replicates 3811c6a22253dfc65d251d9408eb98d67e1452ddM: 3811c6a22253dfc65d251d9408eb98d67e1452dd 192.168.127.129:7002   slots:10923-16383 (5461 slots) master   1 additional replica(s)M: 822306088f036ee5e27fbe53420e2160f06408ea 192.168.127.130:7004   slots:5461-10922 (5462 slots) master   1 additional replica(s)S: 7580e123ca9eff829540e5e7cd34afcbab5b2b64 192.168.127.130:7005   slots: (0 slots) slave   replicates 0383b1fbe71d8f4349a094711896632f5c54b40c[OK] All nodes agree about slots configuration.>>> Check for open slots...>>> Check slots coverage...[OK] All 16384 slots covered.

 

 

192.168.127.129:7001> cluster nodes

 

查看集群状态

不难发现,集群中一个主节点set了一个值,其它主节点能获取到,从节点也能获取到。

到此,集群搭建完毕

 

转载于:https://www.cnblogs.com/LUA123/p/8255105.html

你可能感兴趣的文章
ViewPager Banner(广告墙)
查看>>
程序员是如何一步步走向平庸的?
查看>>
Spring Cloud 入门教程(二): 服务消费者(rest+ribbon)(Greenwich.RELEASE)
查看>>
iOS开发20:Navigation Bar的简单设置
查看>>
iOS开发24:使用SQLite3存储和读取数据
查看>>
GMF树形布局 2 实现展开/折叠
查看>>
Cocos2dx 2.0x Touch事件
查看>>
php判断是否登录
查看>>
Yii2 Unable to verify your data submission 错误-CSRF
查看>>
angularjs-paste-upload
查看>>
hadoop学习笔记
查看>>
解除 Linux 系统的最大进程数和最大文件打开数限制
查看>>
在 Linux 中删除超大文件的技巧
查看>>
Java类的修饰符判断:java.lang.reflect.Modifier
查看>>
使用优盘或者移动硬盘安装Ubuntu
查看>>
electron-创建一个hello world应用
查看>>
RXjs相关
查看>>
百练2973: Skew binary 数 之 Java 题解
查看>>
从机器学习谈起
查看>>
android OTA差分包的生成方法
查看>>