redis主从同步

Posted 罗夏

tags:

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

一.临时同步,重启redis-server后失效

127.0.0.1:6379>slaveof masterIP masterPORT

如果master有密码,同步将失败,需要在redis.conf配置文件中增加

masterauth masterPWD

然后重启redis-server

 

二.永久同步

redis.conf中增加

slaveof masterIP masterPORT

masterauth masterPWD

重启redis-server

以上是关于redis主从同步的主要内容,如果未能解决你的问题,请参考以下文章

深入剖析redis主从同步机制

Redis 主从架构数据同步

Redis主从同步与集群管理

Redis系列--主从同步

redis主从同步机制

Redis主从同步原理-SYNC