Rate This Document
Findability
Accuracy
Completeness
Readability

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.

  1. Connect to the master node.
    redis-cli -h 127.0.0.1 -p 6380

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