Redis 提供了主从复制(Master-Slave Replication)和哨兵(Sentinel)两种机制来进行故障恢复。下面分别介绍这两种方法:
主从复制是 Redis 默认的故障恢复方式。它通过将一个 Redis 服务器(主服务器)的数据复制到一个或多个其他 Redis 服务器(从服务器)来实现故障恢复。当主服务器出现故障时,可以将一个从服务器提升为主服务器,接管故障主服务器的请求。
配置主从复制的步骤如下:
a. 配置主服务器:
在主服务器的 redis.conf 配置文件中,添加以下内容:
bind 0.0.0.0
protected-mode no
port 6379
requirepass your_master_password
这里将主服务器的绑定地址设置为 0.0.0.0,以便从服务器可以连接到主服务器。同时,设置密码保护。
b. 配置从服务器:
在从服务器的 redis.conf 配置文件中,添加以下内容:
bind 0.0.0.0
protected-mode no
port 6380
slaveof your_master_ip 6379
masterauth your_master_password
这里将从服务器的绑定地址设置为 0.0.0.0,以便客户端可以连接到从服务器。同时,设置主服务器的 IP 地址和端口,以及主服务器的密码。
c. 重启 Redis 服务:
在主服务器和从服务器上重启 Redis 服务。
d. 验证主从复制状态:
在主服务器上执行 info replication
命令,查看主从复制的状态。在从服务器上执行 info replication
命令,查看从服务器的状态。
当主服务器出现故障时,可以通过以下步骤将从服务器提升为主服务器:
a. 在从服务器上执行 SLAVEOF NO ONE
命令,将从服务器提升为主服务器。
b. 修改从服务器的 redis.conf 配置文件,将 slaveof
配置项删除。
c. 重启 Redis 服务。
哨兵是 Redis 官方提供的分布式故障转移解决方案。它监控主从复制环境中的主服务器和从服务器,当主服务器出现故障时,自动将从服务器提升为主服务器,并将新的主服务器地址通知客户端。
配置哨兵的步骤如下:
a. 配置哨兵:
创建一个名为 sentinel.conf 的配置文件,添加以下内容:
sentinel monitor mymaster your_master_ip 6379 2
sentinel down-after-milliseconds mymaster 5000
sentinel failover-timeout mymaster 60000
sentinel parallel-syncs mymaster 1
这里将主服务器的名称设置为 mymaster
,IP 地址设置为 your_master_ip
,端口设置为 6379
。同时,设置故障检测时间间隔为 5 秒,故障转移超时时间为 60 秒,并行同步从服务器数量为 1。
b. 启动哨兵:
在哨兵所在的机器上执行 redis-sentinel sentinel.conf
命令,启动哨兵。
c. 验证哨兵状态:
执行 redis-cli sentinel get-master-addr-by-name mymaster
命令,查看主服务器的地址。
当主服务器出现故障时,哨兵会自动将从服务器提升为主服务器,并将新的主服务器地址通知客户端。