内容简介:redis cluster配置与使用(5.0版本)集群需要至少3个主3个从,不然创建不了集群这里使用6台redis
redis cluster配置与使用(5.0版本)
集群需要至少3个主3个从,不然创建不了集群
这里使用6台redis
集群创建之前需要先启动 redis 服务器,使用redis.conf。
redis.conf的最少配置:
cluster-enabled yes port 7000 appendonly yes
创建目录
mkdir cluster-test
cd cluster-test
mkdir 7000 7001 7002 7003 7004 7005
每个redis.conf不同就是port,这里根据目录名
把redis.conf分别拷贝到7000 ... 7005目录下
运行
把redis的可执行文件拷贝到cluster-test下,像这样分别进入7000 ... 7005目录
cd 7000
../redis-server ./redis.conf
6个redis启动后,创建集群(redis 5.0版本)
./redis-cli --cluster create 127.0.0.1:7000 127.0.0.1:7001 \
127.0.0.1:7002 127.0.0.1:7003 127.0.0.1:7004 127.0.0.1:7005 \
--cluster-replicas 1
出现缺人按钮,输入yes,你会看到这个消息,即成功创建
测试使用
在不同的redis上访问数据,如果数据不在,会提示重定向到哪里获取
此时创建成功
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- 6、如何获取配置中心的配置
- React降级配置及Ant Design配置
- vscode 配置eslint 开发vue的相关配置
- git commit 规范校验配置和版本发布配置
- hadoop地址配置、内存配置、守护进程设置、环境设置
- 在hibernate中配置事务级别与命名查询配置【原创】
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
The Elements of Statistical Learning
Trevor Hastie、Robert Tibshirani、Jerome Friedman / Springer / 2009-10-1 / GBP 62.99
During the past decade there has been an explosion in computation and information technology. With it have come vast amounts of data in a variety of fields such as medicine, biology, finance, and mark......一起来看看 《The Elements of Statistical Learning》 这本书的介绍吧!