一、启动 redis 服务
[[email protected] bin]# ./redis-server redis.conf
二、使用客户端连接服务
[[email protected] bin]# ./redis-cli -h 192.168.25.128 -p 6379
三、如何关闭服务端
[[email protected] bin]# ./redis-cli shutdown
四、如何退出客户端的连接
192.168.25.128:6379> exit
五、helloworld
192.168.25.128:6379> set str helloworld
六、取值
192.168.25.128:6379> get str
七、返回值
"helloworld"