一、多实例配置
1、准备俩配置文件,开两个就准备两个
- redis-6380.conf
- redis-6381.conf
2、分别写入配置信息(这里简化了配置)
# 运行在6380端口bind 172.18.107.180port 6380daemonize yespidfile /var/run/redis_6380.pid# 运行在6381端口bind 172.18.107.180port 6381daemonize yespidfile /var/run/redis_6381.pid
3、分别指定不同配置文件启动redis服务端
4、验证
二、主从同步
比如,以6380为master,以6081为slave,则在redis-6381.conf中加入:
slaveof 172.18.107.180 6380