Redis Sentinel (HA) on RHEL 9
Architecture
- Primary 192.168.1.10:6379
- Replica 192.168.1.11:6379, 192.168.1.12:6379
- Sentinels on port 26379 (all 3 nodes)
Primary redis.conf
bind 0.0.0.0
requirepass RedisPass!
Replica redis.conf
bind 0.0.0.0
requirepass RedisPass!
replicaof 192.16...