Rockylinux 9.2部署redis 7.0.11的哨兵模式
1. redis三种模式说明
1.1 单机模式
单机模式是Redis最简单的部署形式,仅包含一个Redis实例。
这种模式易于设置和管理,适用于开发、测试和小型生产环境。
单机模式的缺点是,它无法提供高可用性和水平扩展性。如果Redis实例出现故障,可能导致服务中断。
1.2 哨兵模式
哨兵模式是基于主从复制架构的,包含一个主节点和多个从节点。主节点负责读写操作,从节点负责复制主节点的数据。
Redis哨兵实例负责监控主从节点的健康状况。当主节点出现故障时,哨兵会自动将一个从节点提升为新的主节点,从而实现自动故障转移和高可用性。
哨兵模式提供了读取操作的水平扩展性,可以将读请求分发到从节点以减轻主节点的负担。但是,它不支持写操作的水平扩展。
哨兵模式比单机模式更复杂,需要配置和管理主从复制和哨兵实例。
作为开发人员需要知道的是,与单机模式不同,使用哨兵模式时要修改少量代码。
1.3 集群模式
集群模式是Redis的分布式部署方案,数据分布在多个主节点上,每个主节点都有一个或多个从节点。
集群模式提供了高可用性、读写操作的水平扩展性和数据分片功能。Redis集群通过键空间分区将数据分布在多个主节点上,每个主节点负责一部分键空间。
当某个主节点出现故障时,其对应的从节点会被提升为新的主节点,实现故障转移。
集群模式相对于单机模式和哨兵模式更复杂,需要配置和管理多个主从节点和分片策略。
作为开发人员需要知道的是,与单机模式、哨兵模式不同,使用集群模式时要修改少量代码。
在实际使用中,集群模式也较少使用,主要还是哨兵模式;集群模式设备成本、维护成本、开发成本都比较高;
2. 环境说明
序号 | 操作系统 | IP | 主机名 | 备注 |
---|---|---|---|---|
1 | Rockylinux 9.2 | 192.168.3.51 | web-c1.tiga.cc | 业务服务器C1 |
2 | Rockylinux 9.2 | 192.168.3.52 | web-c2.tiga.cc | 业务服务器C2 |
3 | Rockylinux 9.2 | 192.168.3.53 | redis-01.tiga.cc | redis主节点 |
4 | Rockylinux 9.2 | 192.168.3.54 | redis-02.tiga.cc | redis从节点 |
+----+ +----+
| M1 |----+----| R1 |
| S1 | | | S2 |
+----+ | +----+
|
+-----+-----+
| |
| |
+----+ +----+
| C1 | | C2 |
| S3 | | S4 |
+----+ +----+
Configuration: quorum = 3
在实际生产环境中,大部分中小企业为了节省成本,通常不会有很多服务器专门用来跑redis哨兵或集群;
本文redis一主一从4哨兵,其中2个哨兵进程运行在业务(web)服务器上;
3. 部署redis哨兵
3.1 通过源码编译安装redis
echo "vm.overcommit_memory=1" >> /etc/sysctl.conf
echo "net.core.somaxconn = 1000" >> /etc/sysctl.conf
sysctl -p
mkdir /var/log/redis
mkdir /etc/redis
wget https://github.com/redis/redis/archive/refs/tags/7.0.11.tar.gz
tar -xf 7.0.11.tar.gz
cd redis-7.0.11
make
make install
3.2 修改redis server主节点配置文件
编辑文件/etc/redis/redis-server.conf
bind 0.0.0.0
port 6379
masterauth tigacc
requirepass tigacc
tcp-backlog 800
maxclients 10000
timeout 0
tcp-keepalive 300
daemonize yes
supervised no
pidfile /var/run/redis_6379.pid
loglevel notice
logfile "/var/log/redis/redis.log"
databases 16
stop-writes-on-bgsave-error yes
save ""
rdbcompression no
dbfilename dump.rdb
dir "/tmp"
slave-serve-stale-data yes
slave-read-only yes
repl-diskless-sync no
repl-diskless-sync-delay 5
repl-disable-tcp-nodelay no
slave-priority 100
maxmemory 1gb
maxmemory-policy allkeys-lru
maxmemory-samples 5
appendonly no
lua-time-limit 5000
slowlog-log-slower-than 10000
slowlog-max-len 128
latency-monitor-threshold 0
notify-keyspace-events ""
hash-max-ziplist-entries 512
hash-max-ziplist-value 64
list-max-ziplist-size -2
list-compress-depth 0
set-max-intset-entries 512
zset-max-ziplist-entries 128
zset-max-ziplist-value 64
hll-sparse-max-bytes 3000
activerehashing yes
client-output-buffer-limit normal 0 0 0
client-output-buffer-limit slave 256mb 64mb 60
client-output-buffer-limit pubsub 32mb 8mb 60
3.3 修改redis server从节点配置文件
# 与主节点配置文件基本相同
# 只需增加一行指定主节点IP和端口
slaveof 192.168.3.53 6379
3.4 修改哨兵配置文件
编辑文件/etc/redis/redis-sentinel.conf
protected-mode no
port 26379
daemonize yes
pidfile "/var/run/redis-sentinel.pid"
logfile "/var/log/redis/redis-sentinel.log"
dir "/tmp"
acllog-max-len 128
# 注意,只有redis 6.2及以上版本才支持填写主机名;低于6.2的只能填写IP
sentinel monitor mymaster 192.168.3.53 6379 3
sentinel down-after-milliseconds mymaster 10000
acllog-max-len 128
sentinel parallel-syncs mymaster 1
sentinel failover-timeout mymaster 180000
sentinel deny-scripts-reconfig yes
sentinel auth-pass mymaster tigacc
SENTINEL resolve-hostnames no
SENTINEL announce-hostnames no
SENTINEL master-reboot-down-after-period mymaster 0
3.5 启动redis与redis哨兵
redis-server /etc/redis/redis-server.conf
redis-sentinel /etc/redis/redis-sentinel.conf
4. 验证
4.1 向sentinel查询master的状态
redis-cli -p 26379 SENTINEL MASTER mymaster
输出
1) "name"
2) "mymaster"
3) "ip"
4) "192.168.3.53"
5) "port"
6) "6379"
7) "runid"
8) "1ff06f8e4f53f933b69bff997efd15a6fe89e7a0"
9) "flags"
10) "master"
11) "link-pending-commands"
12) "0"
13) "link-refcount"
14) "1"
15) "last-ping-sent"
16) "0"
17) "last-ok-ping-reply"
18) "762"
19) "last-ping-reply"
20) "762"
21) "down-after-milliseconds"
22) "10000"
23) "info-refresh"
24) "5192"
25) "role-reported"
26) "master"
27) "role-reported-time"
28) "15371"
29) "config-epoch"
30) "0"
31) "num-slaves"
32) "1"
33) "num-other-sentinels"
34) "1"
35) "quorum"
36) "3"
37) "failover-timeout"
38) "180000"
39) "parallel-syncs"
40) "1"
4.2 获取当前master地址
redis-cli -p 26379 SENTINEL get-master-addr-by-name mymaster
输出
1) "192.168.3.53"
2) "6379"
4.3 测试故障转移
模拟redis故障
# shutdown -h now
等待一会,获取master地址
redis-cli -p 26379 SENTINEL get-master-addr-by-name mymaster
输出
1) "192.168.3.54"
2) "6379"