Verifying Redis
Use the Redis CLI tool redis-cli to connect to the Redis master and slave nodes to verify their running status and exchange data.
- Connect to the master node.
redis-cli -h 127.0.0.1 -p 6380

- Connect to the slave node.
redis-cli -h 127.0.0.1 -p 6381

Parent topic: Master/Slave Replication Deployment