進入主客戶端
redis-cli -h 10.1.26.17 -p 6379
進入從客戶端
redis-cli -h 10.1.26.17 -p 6378
在master寫數(shù)據(jù)
mset a1 11 a2 22 a3 33

image.png
在slave讀數(shù)據(jù)
mget a1 a2 a3

image.png
redis-cli -h 10.1.26.17 -p 6379
redis-cli -h 10.1.26.17 -p 6378
mset a1 11 a2 22 a3 33
mget a1 a2 a3