制造伪分布式
- 复制两份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.conf
和redis-server ./redis2.conf
- 指定端口进入redis
redis-cli -p 6380
和redis-cli -p 6381
- 分别进入6379、6380、6381端口的三台服务器,使用
info
查看信息。
完成,这样在主服务器中数据存储时,从服务器也要进行存储。