1、准备俩配置文件,开两个就准备两个
2、分别写入配置信息(这里简化了配置)
# 运行在6380端口 bind 172.18.107.180 port 6380 daemonize yes pidfile /var/run/redis_6380.pid # 运行在6381端口 bind 172.18.107.180 port 6381 daemonize yes pidfile /var/run/redis_6381.pid
3、分别指定不同配置文件启动redis服务端
4、验证
比如,以6380为master,以6081为slave,则在redis-6381.conf中加入:
slaveof 172.18.107.180 6380
原文:https://www.cnblogs.com/believepd/p/10609764.html