Redisdesktopmanager Download Address: https://redisdesktop.com/download
problems that may be encountered during use I have a summary after the article
I downloaded the Windows version of:
My Redis is installed on Linux on the virtual machine, look at the IP address
Post-Installation Redisdesktopmanager
Install the above style Add a connection (connection password if not, do not fill out)
Then connect to the Redis database
Problems you may encounter:
"0": Redis opens protection mode
Modify the following parameters of the Redis.config file (yes to No)
make the configuration file effective with reference to "II"
"One": Linux port 6379 is not open
To open a document with the VI editor, add the following: Vi/etc/sysconfig/iptables
-A input-m state--state new-m tcp-p TCP--dport 6379-j ACCEPT
Then restart the firewall, or turn off the firewall (the worst)
"II": Redis set a password but not valid
The Redis.config in the Redis installation directory has the following configuration
Indicates that a password has been configured, but the configuration file is loaded at boot time
Specify the load profile at startup (Note your profile location)
[Root@localhost bin]#./redis-server. /redis.conf
When you log in to the Redis client again, you can connect without entering a password, but any of the actions are as follows:
The connection operation should be:
./redis-cli-h 127.0.0.1-p 6379-a your password
The above is my use of the Redisdesktopmanager process encountered problems, due to the system environment is not the same, maybe the problem is not the same, look at your luck.