热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

部署rediscluster

1、环境准备☆每个Redis节点采用相同的相同的Redis版本、相同的密码、硬件配置☆所有Redis服务器必须没有任何数据#所有主从节点执行:[root@ubuntu2004~]#
1、环境准备

☆ 每个Redis 节点采用相同的相同的Redis版本、相同的密码、硬件配置

☆ 所有Redis服务器必须没有任何数据

#所有主从节点执行:

[[email protected] ~]#bash install_redis.sh

#脚本参考:https://blog.51cto.com/dayu/5805274

2、启用 redis cluster 配置

#所有主从节点执行:

#每个节点修改redis配置,必须开启cluster功能的参数
[[email protected] ~]#vim /apps/redis/etc/redis.conf

bind 0.0.0.0

masterauth 123456 #建议配置,否则后期的master和slave主从复制无法成功,还需再配置

requirepass 123456

cluster-enabled yes #取消此行注释,必须开启集群,开启后 redis 进程会有cluster标识

cluster-config-file nodes-6379.conf #取消此行注释,此为集群状态数据文件,记录主从关系及slot范围信息,由redis cluster 集群自动创建和维护

cluster-require-full-coverage no #默认值为yes,设为no可以防止一个节点不可用导致整个cluster不可用

#验证当前Redis服务状态:

[[email protected] ~]#ss -ntl

State Recv-Q Send-Q Local Address:Port Peer Address:Port Process

LISTEN 0 511 0.0.0.0:6379 0.0.0.0:*

LISTEN 0 4096 127.0.0.53%lo:53 0.0.0.0:*

LISTEN 0 128 0.0.0.0:22 0.0.0.0:*

LISTEN 0 511 0.0.0.0:16379 0.0.0.0:*

LISTEN 0 511 [::1]:6379 [::]:*

LISTEN 0 128 [::]:22 [::]:*

LISTEN 0 511 [::1]:16379 [::]:*
#开启了16379的cluster的端口,实际的端口=redis port + 10000

3、创建集群

#10.0.0.101:

[[email protected] ~]#redis-cli -a 123456 --cluster create 10.0.0.101:6379 10.0.0.102:6379 10.0.0.103:6379 10.0.0.18:6379 10.0.0.28:6379 10.0.0.38:6379 --cluster-replicas 1

#命令redis-cli的选项 --cluster-replicas 1 表示每个master对应一个slave节点

4、验证集群

#查看主从状态

[[email protected] ~]#redis-cli -a 123456 -c info replication

Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.

# Replication

role:master

connected_slaves:1

slave0:ip=10.0.0.28,port=6379,state=online,offset=602,lag=0

......
#查看对应关系

[[email protected] ~]#redis-cli -a 123456 cluster nodes

Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.

c58b6d30550a3d6d682d2a4f7563efabf470bd82 10.0.0.38:[email protected] slave 139317befd252551e1135b27d32ce557133ec71a 0 1667098745948 2 connected

......
#验证集群状态

[[email protected] ~]#redis-cli -a 123456 cluster info

Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.

cluster_state:ok

cluster_slots_assigned:16384

cluster_slots_ok:16384

cluster_slots_pfail:0

cluster_slots_fail:0

cluster_known_nodes:6 #节点数

cluster_size:3 #三个集群

......
#查看任意节点的集群状态

[[email protected] ~]#redis-cli -a 123456 --cluster info 10.0.0.38:6379

Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.

10.0.0.102:6379 (139317be...) -> 0 keys | 5462 slots | 1 slaves.

10.0.0.101:6379 (98df8874...) -> 0 keys | 5461 slots | 1 slaves.

10.0.0.103:6379 (8d72bbb5...) -> 0 keys | 5461 slots | 1 slaves.

[OK] 0 keys in 3 masters.

0.00 keys per slot on average.
[[email protected] ~]#redis-cli -a 123456 --cluster check 10.0.0.38:6379

5、测试写入数据

[[email protected] ~]#redis-cli -a 123456 -h 10.0.0.102 set k1 wang

Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.

(error) MOVED 12706 10.0.0.103:6379 #槽位不在当前node所以无法写入
[[email protected] ~]#redis-cli -a 123456 -h 10.0.0.103 set k1 wang

Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.

OK
[[email protected] ~]#redis-cli -a 123456 -h 10.0.0.103 get k1

Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.

"wang"

[[email protected] ~]#redis-cli -a 123456 -h 10.0.0.103 get k1

Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.

"wang"
#使用选项-c 以集群模式连接

[[email protected] ~]#redis-cli -c -h 10.0.0.18 -a 123456 --no-auth-warning

10.0.0.18:6379> cluster keyslot test

(integer) 6918

10.0.0.18:6379> set test mylove

-> Redirected to slot [6918] located at 10.0.0.102:6379

OK

10.0.0.102:6379> get test

"mylove"

10.0.0.102:6379> exit

[[email protected] ~]#redis-cli -h 10.0.0.102 -a 123456 --no-auth-warning get test

"mylove"


部署redis-cluster的相关教程结束。



推荐阅读
  • 在Python开发过程中,随着项目数量的增加,不同项目依赖于不同版本的库,容易引发依赖冲突。为了避免这些问题,并保持开发环境的整洁,可以使用Virtualenv和Virtualenvwrapper来创建和管理多个隔离的Python虚拟环境。 ... [详细]
  • 微软Exchange服务器遭遇2022年版“千年虫”漏洞
    微软Exchange服务器在新年伊始遭遇了一个类似于‘千年虫’的日期处理漏洞,导致邮件传输受阻。该问题主要影响配置了FIP-FS恶意软件引擎的Exchange 2016和2019版本。 ... [详细]
  • 本文介绍如何在现有网络中部署基于Linux系统的透明防火墙(网桥模式),以实现灵活的时间段控制、流量限制等功能。通过详细的步骤和配置说明,确保内部网络的安全性和稳定性。 ... [详细]
  • PHP 过滤器详解
    本文深入探讨了 PHP 中的过滤器机制,包括常见的 $_SERVER 变量、filter_has_var() 函数、filter_id() 函数、filter_input() 函数及其数组形式、filter_list() 函数以及 filter_var() 和其数组形式。同时,详细介绍了各种过滤器的用途和用法。 ... [详细]
  • 在项目部署后,Node.js 进程可能会遇到不可预见的错误并崩溃。为了及时通知开发人员进行问题排查,我们可以利用 nodemailer 插件来发送邮件提醒。本文将详细介绍如何配置和使用 nodemailer 实现这一功能。 ... [详细]
  • 搭建Jenkins、Ant与TestNG集成环境
    本文详细介绍了如何在Ubuntu 16.04系统上配置Jenkins、Ant和TestNG的集成开发环境,涵盖从安装到配置的具体步骤,并提供了创建Windows Slave节点及项目构建的指南。 ... [详细]
  • docker镜像重启_docker怎么启动镜像dock ... [详细]
  • Git管理工具SourceTree安装与使用指南
    本文详细介绍了Git管理工具SourceTree的安装、配置及团队协作方案,旨在帮助开发者更高效地进行版本控制和项目管理。 ... [详细]
  • CentOS 6.5 上安装 MySQL 5.7.23 的详细步骤
    本文详细介绍如何在 CentOS 6.5 系统上成功安装 MySQL 5.7.23,包括卸载旧版本、下载安装包、配置文件修改及启动服务等关键步骤。 ... [详细]
  • 目录一、salt-job管理#job存放数据目录#缓存时间设置#Others二、returns模块配置job数据入库#配置returns返回值信息#mysql安全设置#创建模块相关 ... [详细]
  • 本文探讨了为何相同的HTTP请求在两台不同操作系统(Windows与Ubuntu)的机器上会分别返回200 OK和429 Too Many Requests的状态码。我们将分析代码、环境差异及可能的影响因素。 ... [详细]
  • 本文详细介绍了如何在云服务器上配置Nginx、Tomcat、JDK和MySQL。涵盖从下载、安装到配置的完整步骤,帮助读者快速搭建Java Web开发环境。 ... [详细]
  • CentOS 7.6环境下Prometheus与Grafana的集成部署指南
    本文旨在提供一套详细的步骤,指导读者如何在CentOS 7.6操作系统上成功安装和配置Prometheus 2.17.1及Grafana 6.7.2-1,实现高效的数据监控与可视化。 ... [详细]
  • 本文档汇总了Python编程的基础与高级面试题目,涵盖语言特性、数据结构、算法以及Web开发等多个方面,旨在帮助开发者全面掌握Python核心知识。 ... [详细]
  • 随着技术社区的发展,越来越多的技术爱好者选择通过撰写博客来分享自己的学习经验和项目进展。本文将介绍一个具体案例,即将一套原本运行于Windows平台的代码成功移植到Linux(Redhat)环境下的过程与挑战。 ... [详细]
author-avatar
Panzerkampfwagen-VI_238
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有