解决 redis 无法远程连接


Posted in Redis onMay 15, 2022

问题描述:

redis远程服务端运行在192.168.3.90计算机上,客户端计算机(ip:192.168.3.110)通过redsi-cli.exe客户端工具连接时,没有反应,连接不上。

如图所示:

解决 redis 无法远程连接

解决步骤:

步骤一:注释掉redis.window.conf文件中的bind属性设置。

如图所示:

解决 redis 无法远程连接

解决 redis 无法远程连接

步骤二:把protected-mode属性设置no

解决 redis 无法远程连接

重启redis即可远程连接。

如图所示:

解决 redis 无法远程连接

解决 redis 无法远程连接

解决 redis 无法远程连接

确定启动成功,查看所有keys

解决 redis 无法远程连接

清空所有keys

解决 redis 无法远程连接

注意事项:

不能直接双击redis安装目录下bin目录下的redis-server.exe启动redis服务端,否则会导致无法通过远程客户端进行操作。

如果所示,通过双击redis-server.exe命令启动redis后,然后执行keys查看所有键时报错,

解决 redis 无法远程连接

解决 redis 无法远程连接

解决 redis 无法远程连接

报错如下异常:

(error) DENIED Redis is running in protected mode because protected mode is enabled, 
no bind address was specified, no authentication password is requested to clients. 
In this mode connections are only accepted from the loopback interface. 
If you want to connect from external computers to Redis you may adopt one of the following solutions:
1) Just disable protected mode sending the command 'CONFIG SET protected-mode no' from the loopback interface by connecting to Redis 
from the same host the server is running, however MAKE SURE Redis is not publicly accessible from internet if you do so. 
Use CONFIG REWRITE to make this change permanent. 2) Alternatively you can just disable the protected mode by editing the Redis configuration file,
and setting the protected mode option to 'no', and then restarting the server. 
3) If you started the server manually just for testing, restart it with the '--protected-mode no' option.
4) Setup a bind address or an authentication password. 
NOTE: You only need to do one of the above things in order for the server to start accepting connections from the outside.

原因分析:从启动成功界面分析,这种方式的启动读取的配置文件可能不是redis.windows.conf文件,故之前设置的内容没有生效。

所以启动redis时,通过进入redis安装目录下的bin目录,然后执行

redis-server redis.windows.conf

命令启动名。

另外redis-cli客户端连接redis服务端命令如下

redis-cli -h 192.168.3.90 -p 6379
  • -h 选择指定服务端ip
  • -p 选择指定端口。

到此这篇关于redis远程连接不上的解决办法的文章就介绍到这了,更多相关redis远程连接不上内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!


Tags in this post...

Redis 相关文章推荐
redis连接被拒绝的解决方案
Apr 12 Redis
Redis持久化与主从复制的实践
Apr 27 Redis
使用Redis实现秒杀功能的简单方法
May 08 Redis
Java Socket实现Redis客户端的详细说明
May 26 Redis
浅谈Redis的几个过期策略
May 27 Redis
使用Redis实现实时排行榜功能
Jul 02 Redis
springboot使用Redis作缓存使用入门教程
Jul 25 Redis
Redis集群新增、删除节点以及动态增加内存的方法
Sep 04 Redis
详解redis在微服务领域的贡献
Oct 16 Redis
Redis+Lua脚本实现计数器接口防刷功能(升级版)
Feb 12 Redis
redis 解决库存并发问题实现数量控制
Apr 08 Redis
Redis高并发缓存架构性能优化
May 15 Redis
Redis 限流器
May 15 #Redis
Redis高并发缓存架构性能优化
详解Redis的三种常用的缓存读写策略步骤
windows安装 redis 6.2.6最新步骤详解
muduo TcpServer模块源码分析
Redis数据同步之redis shake的实现方法
Apr 21 #Redis
Grafana可视化监控系统结合SpringBoot使用
You might like
用 Composer构建自己的 PHP 框架之构建路由
2014/10/30 PHP
thinkphp实现上一篇与下一篇的方法
2014/12/08 PHP
PHP实现二维数组去重功能示例
2017/01/12 PHP
Extjs 几个方法的讨论
2010/01/28 Javascript
Jquery公告滚动+AJAX后台得到数据
2011/04/14 Javascript
给js文件传参数(详解)
2014/07/13 Javascript
Javascript获取CSS伪元素属性的实现代码
2014/09/28 Javascript
DOM节点删除函数removeChild()用法实例
2015/01/12 Javascript
jQuery实现的五子棋游戏实例
2015/06/13 Javascript
js中class的点击事件没有效果的解决方法
2016/10/13 Javascript
详解webpack+vue-cli项目打包技巧
2017/06/17 Javascript
微信小程序swiper实现滑动放大缩小效果
2018/11/15 Javascript
JQuery+Bootstrap 自定义全屏Loading插件的示例demo
2019/07/03 jQuery
[01:45]DOTA2众星出演!DSPL刀塔次级职业联赛宣传片
2014/11/21 DOTA
[45:17]DOTA2-DPC中国联赛定级赛 Phoenix vs DLG BO3第三场 1月9日
2021/03/11 DOTA
Python中DJANGO简单测试实例
2015/05/11 Python
在主机商的共享服务器上部署Django站点的方法
2015/07/22 Python
python入门基础之用户输入与模块初认识
2016/11/14 Python
Python通过调用有道翻译api实现翻译功能示例
2018/07/19 Python
解决Pycharm的项目目录突然消失的问题
2020/01/20 Python
利用 PyCharm 实现本地代码和远端的实时同步功能
2020/03/23 Python
Python实现京东抢秒杀功能
2021/01/25 Python
HTML5之SVG 2D入门8—文档结构及相关元素总结
2013/01/30 HTML / CSS
推荐WEB开发者最佳HTML5和CSS3代码生成器
2015/11/24 HTML / CSS
html5页面结构_动力节点Java学院整理
2017/07/10 HTML / CSS
int和Integer有什么区别
2013/05/25 面试题
工程力学专业毕业生求职信
2013/10/06 职场文书
清洁工表扬信
2014/01/08 职场文书
2015年学雷锋活动总结
2015/02/06 职场文书
2015年青年教师工作总结
2015/05/25 职场文书
2015年学校综合治理工作总结
2015/07/20 职场文书
2016习总书记系列重要讲话心得体会
2016/01/15 职场文书
《平行四边形的面积》教学反思
2016/02/16 职场文书
2019年度开业庆典祝福语大全!
2019/07/05 职场文书
Java实现添加条码或二维码到Word文档
2022/06/01 Java/Android
利用Java连接Hadoop进行编程
2022/06/28 Java/Android