Starting Redis
Start a Redis master node and a Redis slave node to start the Redis master/slave replication environment.
- Start the master node.
cd /home/redis/replication/6380 redis-server ./redis.conf --port 6380 &
- Start the slave node.
cd /home/redis/replication/6381 redis-server ./redis.conf --port 6381 &
Parent topic: Master/Slave Replication Deployment