redisdesktopmanager怎么连接有密码的redis

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了redisdesktopmanager怎么连接有密码的redis相关的知识,希望对你有一定的参考价值。

红色箭头  新创建一个连接,

黄色箭头  给链接起别名,

蓝色箭头  redis地址,

绿色剪头  redis端口号,

黑色箭头  redis密码。

参考技术A 为了保证单点故障下的数据可用性,Redis Cluster引入了Master节点和Slave节点。
在Redis Cluster中,每个Master节点都会有对应的两个用于冗余的Slave节点。
这样在整个集群中,任意两个节点的宕机都不会导致数据的不可用。当Master节点退出后,集群会自动选择一个Slave节点成为新的Master节点本回答被提问者采纳

使用RedisDesktopManager工具,解决连接失败问题

今天在云服务器上搭建好了redis环境,想用RedisDesktopManager工具去连接一下,结果连接不上,显示如下图:

技术分享图片

 

 

我确保了服务器防火墙关闭,又在redis配置文件中设置了requirepass 密码,但还是失败。在自己电脑上也能够ping通服务端ip地址。

我就看了一下redis.conf文件。开头就有写原因:

 

################################## NETWORK #####################################

# By default, if no "bind" configuration directive is specified, Redis listens
# for connections from all the network interfaces available on the server.
# It is possible to listen to just one or multiple selected interfaces using
# the "bind" configuration directive, followed by one or more IP addresses.
#
# Examples:
#
# bind 192.168.1.100 10.0.0.1          这里是告诉我们可以绑定多个ip来连接redis服务端
# bind 127.0.0.1 ::1
#
# ~~~ WARNING ~~~ If the computer running Redis is directly exposed to the
# internet, binding to all the interfaces is dangerous and will expose the 翻译一下大概  注意:如果redis直接暴露在互联网,绑定所有接口是非常危险的,因此我们没有注释下面的绑定指令

# instance to everybody on the internet. So by default we uncomment the        bind 127.0.0.1    这个相当于只绑定在服务端本地,也就是说只能在服务端连接redis,进行操作

# following bind directive, that will force Redis to listen only into
# the IPv4 lookback interface address (this means Redis will be able to
# accept connections only from clients running into the same computer it
# is running).
#
# IF YOU ARE SURE YOU WANT YOUR INSTANCE TO LISTEN TO ALL THE INTERFACES    如果你想要开放所有ip接口,注释下面这行
# JUST COMMENT THE FOLLOWING LINE.
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#bind 127.0.0.1

 

就直接注释bind 127.0.0.1,重启一下让配置生效,再进行远程连接就ok了:

技术分享图片




















以上是关于redisdesktopmanager怎么连接有密码的redis的主要内容,如果未能解决你的问题,请参考以下文章

redisdesktopmanage 可视化工具怎么登陆

使用RedisDesktopManager工具,解决连接失败问题

解决RedisDesktopManager连接不上redis问题

RedisDesktopManager连接不上redis的解决方法

RedisDesktopManager连接不上redis的解决方法

RedisDesktopManager连接不上redis的解决方法