RedisDesktopManager cannot connect to redis

Virtual machine installed on a remote server and the Redis , then RedisDesktopManager visual interface attached to the windows above ground Redis , the connection if it is not

This needs to be commented out in redis-3.2.4/redis.conf:

#bind 127.0.0.1

The new version may need to be modified to bind 0.0.0.0

At present, the protected mode of the new version of redis is enabled by default. In this case, redis must be configured with a password to connect to RedisDesktopManager.


The built-in client redis-cli can be used to set the password:
127.0.0.1:6379> config set requirepass 1*****
OK


So if you don’t want to configure a password for redis, you need to modify the configuration file: protected-mode no


Guess you like

Origin blog.csdn.net/liushulin183/article/details/74936209