一、资源准备

1、准备三台服务器H1、H2、H3

172.26.237.83 H1
172.26.237.84 H2
172.26.237.85 H3

二、配置服务器

1、在H1服务器设置SSH免密登录;在H1生成RSA公钥和私钥(在H1操作)

(1)执行ssh-keygen -t rsa命令
(2)进入生成密钥所在的文件目录cd /root/.ssh/
(3)将公钥(名为id_rsa.pub文件)追加到认证文件(名为authorized_keys文件),先后执行以下指令:

ssh-copy-id 172.26.237.83
ssh-copy-id 172.26.237.84
ssh-copy-id 172.26.237.85

(注意:这里的IP是H1、H2、H3内网IP,执行后需要输入yes和服务器密码)

2、配置域名解析文件(负责将主机名称映射到相应的IP地址

(1)在root目录创建env目录,并进入env目录下执行以下命令

cat > /root/env/hosts.txt <<EOF
172.26.237.83 H1
172.26.237.84 H2
172.26.237.85 H3
EOF cat /root/env/hosts.txt
cat /root/env/hosts.txt >> /etc/hosts

(2)在每个节点进入env创建redis源配置文件,命名为redis-env.conf

echo -e "port 7001\ncluster-enabled yes\ndaemonize yes\ndir /root/soft/7001\ncluster-config-file nodes-7001.conf\npidfile "/root/soft//redis-.pid"\nlogfile "/root/soft//redis-.log"\nappendonly yes" > "redis-env.conf"

配置文件说明:

port
cluster-enabled yes
dir /root/soft/
cluster-config-file nodes-.conf
pidfile /root/soft//redis-.pid
logfile /root/soft//redis-.log
appendonly yes
daemonize yes
protected-mode no

3、在各个节点下载安装redis安装包

(1)创建/root/soft目录

mkdir -p /root/soft

(2)下载安装包、解压、并进行编译

cd /root/soft
# 下载
wget http://download.redis.io/releases/redis-5.0.5.tar.gz
# 解压
tar -zxvf redis-5.0.5.tar.gz

# cd redis-5.0.5 进行编译
make
 

4、指定配置文件

(1)创建/root/soft/7000目录与/root/soft/7001目录

cd /root/soft/
mkdir
cd /root/soft/
mkdir

(2)将之前创建的源配置文件拷贝到7000和7001目录下

cd /root/env
cp -R redis-env.conf /root/soft//redis.conf
cp -R redis-env.conf /root/soft//redis.conf

(3)分别进入7000和7001目录,修改redis.conf配置(修改成对应的端口),并检查文件路径是否正确

(4)启动redis-server服务

cd redis-5.0.5
./src/redis-server ..//redis.conf
./src/redis-server ../70001/redis.conf

启动redis-server需要注意,守护进程需要打开,不然启动的时候是不成功的

(5)检查是否启动成功

ps -ef |grep redis

5、创建集群(在H1操作)

三主三从架构说明

三台服务器,启动6个实例,形成三主三从,其中存储相同数据的主从节点不能落在同一台机器上,目的是防止部署redis的虚拟机宕机从而造成主从节点全部失效。实验机器的地址与端口如下:

172.26.237.83  7000 7001
172.26.237.84 7000 7001
172.26.237.85  7000 7001

为了使用主从节点不落在同一台机器上

使用如下命令:每台ip+port交叉(没有找到命令指定主从节点的关系的方法).

在目录下redis-5.0.5 执行

./src/redis-cli --cluster create --cluster-replicas  172.26.237.83: 172.26.237.84: 172.26.237.84: 172.26.237.85: 172.26.237.85: 172.26.237.83:7001

# 根据提示输入yes

集群创建成功,如下图:

6、测试

()cd /root/soft/redis-5.0.5
(2)进入redis客户端
  ./src/redis-cli -c -h H1 -p 7000
(3)输入cluster info 查看集群健康状态
(4)输入cluster nodes 查看节点健康状态

三、搭建过程遇过的异常

1、配置文件的保护模式没有修改成no

(1)配置文件修改前

port
cluster-enabled yes
dir /root/soft/
cluster-config-file nodes-.conf
pidfile /root/soft//redis-.pid
logfile /root/soft//redis-.log
appendonly yes
daemonize yes

抛出异常如下-->

[ERR] Node 172.26.237.83: DENIED Redis is running in protected mode because protected mode is enabled, no bind address was specified, no authentication password is requested to clients. In this mode connections are only accepted from the loopback interface. If you want to connect from external computers to Redis you may adopt one of the following solutions: ) Just disable protected mode sending the command 'CONFIG SET protected-mode no' from the loopback interface by connecting to Redis from the same host the server is running, however MAKE SURE Redis is not publicly accessible from internet if you do so. Use CONFIG REWRITE to make this change permanent. ) Alternatively you can just disable the protected mode by editing the Redis configuration file, and setting the protected mode option to 'no', and then restarting the server. ) If you started the server manually just for testing, restart it with the '--protected-mode no' option. ) Setup a bind address or an authentication password. NOTE: You only need to do one of the above things in order for the server to start accepting connections from the outside.

修改后配置文件,将保护模式修改成no;(protected-mode no)

port 7000
cluster-enabled yes
dir /root/soft/7000
cluster-config-file nodes-7000.conf
pidfile /root/soft/7000/redis-7000.pid
logfile /root/soft/7000/redis-7000.log
appendonly yes
daemonize yes
protected-mode no

2、redis配置了密码,创建集群的时候没有输入密码,也会报错

(1)配置文件如下:

bind 172.26.237.83
port
cluster-enabled yes
dir /root/soft/
cluster-config-file nodes-.conf
pidfile /root/soft//redis-.pid
logfile /root/soft//redis-.log
appendonly yes
daemonize yes
protected-mode yes
requirepass

注意:绑定地址、保护模式设置为yes,密码最好一起设置!!

创建集群报错前的命令:

./src/redis-cli --cluster create --cluster-replicas  172.26.237.83: 172.26.237.84: 172.26.237.84: 172.26.237.85: 172.26.237.85: 172.26.237.83:

报错如下-->

[ERR] Node 172.26.237.83: NOAUTH Authentication required.

修改后的命令:

./src/redis-cli --cluster create --cluster-replicas  172.26.237.83: 172.26.237.84: 172.26.237.84: 172.26.237.85: 172.26.237.85: 172.26.237.83: -a 

3。如果服务器开启了防火墙,需要开放对应的端口

在防火墙中对端口  7001开放:

firewall-cmd --zone=public --add-port=/tcp --permanent

firewall-cmd --zone=public --add-port=/tcp --permanent

firewall-cmd --reload

在三台服务器,搭建redis三主三从集群的更多相关文章

  1. Docker:docker搭建redis一主多从集群(配置哨兵模式)

    角色 实例IP 实例端口 宿主机IP 宿主机端口 master 172.19.0.2 6382 192.168.1.200 6382 slave01 172.19.0.3 6383 192.168.1 ...

  2. Redis 3主-3从集群的搭建(CentOS 7)

    注意ip地址为: 虚拟机ip设置 TYPE="Ethernet"BOOTPROTO="static"NAME="enp0s3"DEVICE= ...

  3. Linux系统:Centos7环境搭建Redis单台和哨兵集群环境

    本文源码:GitHub·点这里 || GitEE·点这里 一.环境和版本 Linux:centos7 三台 三台Linux服务 192.168.72.129 192.168.72.130 192.16 ...

  4. Redis Cluster 集群三主三从高可用环境搭建

    前言 Redis 是我们目前大规模使用的缓存中间件,由于它强大高效而又便捷的功能,得到了广泛的使用. Window环境下载地址:https://github.com/tporadowski/redis ...

  5. 实践 - 搭建Redis一主两从三哨兵

    实践 - 搭建Redis一主两从三哨兵 原因: 最近在复习Redis的时候,学习到了为了提高Redis集群的高可用性,有一个模式为哨兵模式.哨兵模式的作用是为了在主节点出现阻塞或者错误,无法接收数据的 ...

  6. centos 7 两台机器搭建三主三从 redis 集群

    参考自:https://linux.cn/article-6719-1.htmlhttp://blog.csdn.net/xu470438000/article/details/42971091 ## ...

  7. Redis集群搭建 三主三从

    Redis集群介绍 Redis 是一个开源的 key-value 存储系统,由于出众的性能,大部分互联网企业都用来做服务器端缓存.Redis在3.0版本之前只支持单实例模式 虽然支持主从模式,哨兵模式 ...

  8. 搭建Redis三主三从集群

    Redis三主三从集群规划 10.0.128.19   使用端口 7000  7001 10.0.128.22   使用端口 7002  7003 10.0.128.23   使用端口 7004  7 ...

  9. redis cluster + sentinel详细过程和错误处理三主三备三哨兵

    redis cluster + sentinel详细过程和错误处理三主三备三哨兵1.基本架构192.168.70.215 7001 Master + sentinel 27001192.168.70. ...

随机推荐

  1. 如何限制只有某些IP才能使用Tomcat Manager

    只有指定的主机或IP地址才可以访问部署在Tomcat下的应用.Tomcat提供了两个参数供你配置:RemoteHostValve 和RemoteAddrValve,前者用于限制主机名,后者用于限制IP ...

  2. 使用ubuntu的一些操作笔记20191203

    前言 环境: virtualbox + Ubuntu 16.04 情况: 可以进入虚拟机中Ubuntu系统的桌面,但是外部可以访问到 ssh,输入正确的用户名和密码无法登录 无法正常启动 Apache ...

  3. Python3.5-20190506-廖老师-自我笔记函数

    函数就是将你的代码封装起来,可以重复利用.不需要每次就写重复的代码 def 函数名(位置参数,默认参数=10,可变参数,关键字参数): 代码块 return 值 定义函数时,需要确定函数名和参数个数: ...

  4. 前端导出excel表格

    前言近期项目有个新需求--将折线图表的数据加一个下载成excel表格的功能.以前下载功能都是调后台接口的,但是这个迭代,后台压力比较重,部分就交给了前端自己实现,下面就记录一下前端如何实现excel表 ...

  5. 原生js和jquery

    $(document).ready(function() {//jquery的写法 }); (function () { //原生js的写法 })();

  6. Python--同步锁(互斥锁)、死锁(状态)、递归锁、信号量、Event对象

    同步锁/互斥锁 (Lock) import time import threading def sub(): global num #在每个线程中都获取这个全局变量 #num-=1 temp=num ...

  7. textAppearance的属性设置

    android:textAppearance="?android:attr/textAppearanceSmall" android:textAppearance="?a ...

  8. Python之-爬虫

    1.得到页面的HTML代码 第一个参数是URL 第二三个参数可以不传送,数据和时间 2.request请求 HTTP是基于请求和应答的,客户端发出请求,服务端做出响应,所以urllib2创建一个req ...

  9. HTML中多媒体标签技术说明

    在纯文本的HTML页面中加入图片,给原来单调乏味的页面添加生气.HTML语言中利用<IMG>标记插入图片. 1.图片标记<IMG>及其属性 在网站上,网页设计者都使用了大量精心 ...

  10. 「2020 新手必备 」极速入门 Retrofit + OkHttp 网络框架到实战,这一篇就够了!

    老生常谈 什么是 Retrofit ? Retrofit 早已不是什么新技术了,想必看到这篇博客的大家都早已熟知,这里就不啰嗦了,简单介绍下: Retrofit 是一个针对 Java 和 Androi ...