!首先启动虚拟机linux的centos7
2.启动finalshell 我的redis启动在根目录用
redis-server redis.conf --启动
systemctl status redis --查看redis状态 是否active
redis-cli -h centos的ip地址 -p 你要用的redis端口号(默认为6379) -a 你的centos7密码
然后会返回
Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.
192.168.81.130:6379> ping
PONG
//测试是否连接成功
//一下是redis-cli那一场段的简便法
192.168.81.130:6379> auth centos7的密码
OK
192.168.81.130:6379> ping
PONG
打开resp
点击
总结: