Redis Deployment Configurations: Standalone, Master-Slave, Sentinel, and Cluster
Standalone Configuraton Setup
Redis Installation
Download URL: http://redis.io/download
Installation Steps:
Install gcc compiler: yum install gcc
Download and extract the redis-5.0.3.tar.gz file to /usr/local directory
wget http://download.redis.io/releases/redis-5.0.3.tar.gz
tar xzf redis-5.0.3.tar.gz
cd redis-5.0.3
Navigate to the extract ...
Posted on Wed, 22 Jul 2026 16:53:04 +0000 by thechris
Configuring Twemproxy as a Redis Cluster Proxy
Service Name
IP Addres
Description
proxy-server-01
10.32.161.130
Twemproxy (nutcracker) instance
redis-node-01
10.32.161.131
Redis cluster node
redis-node-02
10.32.161.132
Redis cluster node
redis-node-03
10.32.161.133
Redis cluster node
redis-node-04
10.32.161.134
Redis cluster node
redis-node-05
10.32.161.135
Redis cluster no ...
Posted on Thu, 18 Jun 2026 18:06:20 +0000 by jabbaonthedais