The cause of the problem: redis password is not set
Solution: Enter the Redis folder from the command line:
D:\Redis-x64-3.2.100>redis-cli.exe
Check whether a password is set:
127.0.0.1:6379> auth root
(error) ERR Client sent AUTH, but no password is set
Explain that no password is set, execute the command:
127.0.0.1:6379> config set requirepass root
OK
When OK appears, the setting is successful
redis 127.0.0.1:6379> CONFIG SET requirepass “123456”
OK
redis 127.0.0.1:6379> AUTH 123456
Ok
Just set this configuration password
Similar Posts:
- CentOS8 Install redis-6.0.6 make test:“ You need tcl 8.5 or newer in order to run the Redis test“
- Error reported in the celery log of the project: redis.exceptions.connectionerror failed to connect with redis
- [Solved] Redis MISCONF ERROR: Redis is configured to save RDB snapshots
- [Solved] #Creating Server TCP listening socket *:6379: bind: Address already in use
- Redis service failed to start, prompt: redis server: command not found
- [Solved] Execute the redis command redis-trib.rb to view the cluster information error: cannot load such file — redis (LoadError)
- This account is currently not available [How to Solve]
- Filebeat output redis i/o timeout [How to Solve]
- Gitlab 403 Forbidden error [How to Solve]
- Creating Server TCP listening socket 127.0.0.1:6379: bind: No error