主从双备

制造伪分布式

  • 复制两份redis.conf配置文件(为redis1.conf,redis2.conf)
  • 修改redis1.conf和redis2.conf中的port后的数据,例如为6380,6381,
  • 在redis1.conf和redis2.conf中添加slaveof 127.0.0.1 6379,即6379的主服务器向从服务器进行备份。
  • 若主服务器有密码,添加masterauth 主服务器密码
  • 指定启动两个不同进程的redis服务redis-server ./redis1.confredis-server ./redis2.conf
  • 指定端口进入redisredis-cli -p 6380redis-cli -p 6381
  • 分别进入6379、6380、6381端口的三台服务器,使用info查看信息。
    完成,这样在主服务器中数据存储时,从服务器也要进行存储。

你可能感兴趣的:(主从双备)