1、首先在win10下安装redis desktop manager
2、查看虚拟机防火墙状态,启动状态,则关闭掉
查看防火墙状态:
systemctl status firewalld.service 关闭防火墙:
systemctl stop firewalld.service
3、关闭redis,修改redis.conf
关闭redis:
ps -ef|grep redis
kill 进程id vim /src/redis/etc/redis.conf #注释掉本地连接
#bin 127.0.0.1 #设置安全连接密码
requirepass
4、重新启redis
/srv/redis/bin/redis-server /srv/redis/etc/redis.conf
5、使用客户端连接
成功连接: