Redis 主从数据同步的配置可以分为两个部分:主服务器(Master)和从服务器(Slave)的配置。以下是详细的配置步骤:
主服务器(Master)配置
-
编辑 Redis 配置文件: 打开主服务器的 Redis 配置文件
redis.conf
,通常位于/etc/redis/
或/etc/redis/redis.conf
。 -
设置主服务器的 IP 地址和端口: 确保配置文件中的
bind
和port
设置正确。默认情况下,Redis 监听本地 IP 地址127.0.0.1
和端口6379
。bind 127.0.0.1 port 6379
-
设置密码(可选): 如果需要设置密码,编辑
requirepass
配置项。requirepass your_master_password
-
保存配置文件并重启 Redis:
sudo systemctl restart redis
从服务器(Slave)配置
-
编辑 Redis 配置文件: 打开从服务器的 Redis 配置文件
redis.conf
,通常位于/etc/redis/
或/etc/redis/redis.conf
。 -
设置从服务器的 IP 地址和端口: 确保配置文件中的
slaveof
配置项指向主服务器的 IP 地址和端口。slaveof master_ip 6379
-
设置密码(如果主服务器设置了密码): 如果主服务器设置了密码,还需要在从服务器的配置文件中设置相同的密码。
masterauth your_master_password
-
保存配置文件并重启 Redis:
sudo systemctl restart redis
验证同步状态
-
登录到主服务器: 使用
redis-cli
登录到主服务器。redis-cli -h 127.0.0.1 -p 6379 -a your_master_password
-
检查主服务器的状态:
info replication
你应该看到类似以下的输出:
# Replication role:master connected_slaves:1 slave0:ip=slave_ip,port=6380,state=online,offset=100,lag=0
-
登录到从服务器: 使用
redis-cli
登录到从服务器。redis-cli -h 127.0.0.1 -p 6380 -a your_master_password
-
检查从服务器的状态:
info replication
你应该看到类似以下的输出:
# Replication role:slave master_host:master_ip master_port:6379 master_link_status:up
通过以上步骤,你应该能够成功配置 Redis 主从数据同步。如果遇到任何问题,请检查日志文件以获取更多信息。