2台机器安装Redis主从

Posted yappleorange

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2台机器安装Redis主从相关的知识,希望对你有一定的参考价值。

1. 配置redis.conf(主)

bind 127.0.0.1 #注释掉

protected-mode no #关闭保护模式

daemonize yes #开启后台守护进程

logfile "/var/log/redis/redis.log" #日志文件路径

2.配置redis.conf(从)

bind 127.0.0.1 #注释掉

protected-mode no #关闭保护模式

daemonize yes #开启后台守护进程

logfile "/var/log/redis/redis.log" #日志文件路径

slaveof 192.168.1.202 6379#主redis的ip地址与端口

 

3. 配置sentinel.conf(主)

sentinel monitor mymaster 192.168.1.202 6379 2 #改成主redis的ip与端口

daemonize yes #开启后台守护进程

protected-mode no #关闭保护模式

logfile "/var/log/redis/sentinel.log" #日志文件路径

4. 配置sentinel.conf(从)

sentinel monitor mymaster 192.168.1.202 6379 2 #改成主redis的ip与端口

daemonize yes #开启后台守护进程

 

protected-mode no #关闭保护模式

logfile "/var/log/redis/sentinel.log" #日志文件路径

配置成功后重新启动服务器

5. 启动主机

启动主redis

[root@hadoop2 ~]# /usr/local/bin/redis-server /etc/redis6379.conf

[root@hadoop2 ~]# /usr/local/bin/redis-sentinel /etc/sentinel6379.conf

[root@hadoop2 ~]# redis-cli

启动从redis

[root@hadoop3 ~]# /usr/local/bin/redis-server /etc/redis6379.conf

[root@hadoop3 ~]# /usr/local/bin/redis-sentinel /etc/sentinel6379.conf

[root@hadoop3 ~]# redis -cli

主redis设置key value 

 

从redis get key

 

 6.查看信息info

主redis信息

127.0.0.1:6379> info

 

 

 

 

 从redis信息

127.0.0.1:6379> info 

 

redis主从


redis 主从:

    两台机器:

    master(192.168.141.188)

    slave (192.168.141.187)

    分别按照之前介绍的步骤安装并启动redis


master机器配置文件不用动

slave 机器配置文件中加入

slaveof 192.168.141.188 6379

masterauth passwd //如果主上设置了密码,要加上这行

分别启动master和 slave


以上是关于2台机器安装Redis主从的主要内容,如果未能解决你的问题,请参考以下文章

Redis主从与哨兵架构详解 Redis主从架构 如何在同一台机器搭建主从架构 Redis主从工作原理 数据部分复制 Jedis使用 Redis的管道(Pipeline) Redis Lua脚本(代码

REDIS主从搭建

REDIS主从搭建

centos配置redis的主从复制

centos配置redis的主从复制

centos部署redis主从