redis可视化工具RDM连接不上服务器redis问题
程序员文章站
2022-03-10 09:50:42
一、首先确定服务器本地Redis可以访问 二、查看redis.conf配置文件 确保以下两项配置 1.bind 127.0.0.1改为 #bind 127.0.0.1 2.protected-mode yes 改为 protected-mode no ps: protected-mode 是3.2 ......
一、首先确定服务器本地redis可以访问
二、查看redis.conf配置文件
确保以下两项配置
1.bind 127.0.0.1改为 #bind 127.0.0.1
2.protected-mode yes 改为 protected-mode no
ps: protected-mode 是3.2 之后加入的新特性,是为了禁止公网访问redis cache,加强redis安全的。
它启用的条件,有两个:
1) 没有bind ip
2) 没有设置访问密码