After redis is connected, a (error) noauth authentication required.
error is returned after executing the monitor command
[root@m214 src]# ./redis-cli -p 6412
127.0.0.1:6412> monitor
(error) NOAUTH Authentication required.
The reason is that you did not log in with password authentication
Solution:
view the redis configuration file to see the corresponding pass.
# Generated by CONFIG REWRITE
masterauth "2651080c6814a4a9d62da69a12f962b6"
requirepass "2651080c6814a4a9d62da69a12f962b6"
Then, after logging in with redis cli, execute the command auth + password, and then execute the monitor command
[root@m214 src]# ./redis-cli -p 6412
127.0.0.1:6412> auth 2651080c6814a4a9d62da69a12f962b6
OK
127.0.0.1:6412> monitor
OK
Read More:
- Redis use command access exception: (error) noauth authentication required
- Redis Error: (error) NOAUTH Authentication required. [How to Solve]
- laravel-echo-server Run Error: [ioredis] Unhandled error event: ReplyError: NOAUTH Authentication required.
- Redis cannot double-click redis-server.exe to start normally
- [Solved] redis.exceptions.ResponseError: unknown command `KEYS`
- [Solved] C# Access Mongodb Database Error: command find failed: Command find requires authentication
- [Solved] Redis—-(error) MISCONF Redis is configured to save RDB snapshots
- [Solved] Redis Execute redis-cli shutdown Error: (error) ERR Errors trying to SHUTDOWN. Check logs.
- [Solved] Error in integrating redis with springboot: unable to connect to redis
- [Solved] Redis Cache Error: org.springframework.data.redis.serializer.SerializationException: Could not read JSON..
- Error reported when springboot connects to redis nested exception is redis.clients.jedis . exceptions.JedisConnectionException
- Redis Exception | DENIED Redis is running in protected mode because protected mode is enabled
- [Solved] Mac starts redis error: there is no specified conf file
- [Solved] Lumen Error: Class redis does not exist
- [Solved] SpringBoot integration with Redis error: java.net.ConnectException: Connection refused: no further information
- [Solved] Redis Startup Error: FATAL CONFIG FILE ERROR
- [Solved] Redis startup error Creating Server TCP listening socket 127.0.0.1:6379: bind: No error
- Support for password authentication was removed on August 13, 2021
- [Solved] redis Error: Can‘t save in background fork Cannot allocate memory
- [Solved] Redis Error: Creating Server TCP listening socket *:6379: bind: No error