Skip to main content

2 posts tagged with "Redis"

View all tags

Redis 설치 및 Sentinel을 이용한 failover환경 구성하기

· 14 min read

설치환경 및 Redis소스버전

OS: Ubuntu 22.04.3 LTS

Redis: 7.2.3

아래와 같이 3개의 VM을 준비한다.

No.host nameIPnode roles
#1redis-server1172.25.254.131redis (master), sentinel
#2redis-server2172.25.254.132redis (slave), sentinel
#3redis-server3172.25.254.133redis (slave), sentinel

Redis Sentinel, failover과정 정리

· 9 min read

Redis Sentinel은 Redis HA솔루션이다. Redis는 Redis Cluster라고 하는 Cluster제품이 따로 있으며 Sentinel은 Redis Cluster와 관련이 없다. Sentinel은 cluster가 필요없는 사용자들에게 간단한 failover기능을 제공하는 제품이다.