Redis: NOAUTH Authentication required but there is no password setting

后端 未结 6 1648
小蘑菇
小蘑菇 2020-12-08 06:57

I got error NOAUTH Authentication required when I connect to Redis server via command: redis-cli and run ping to check if Redis is

6条回答
  •  清歌不尽
    2020-12-08 07:36

    We also faced a similar issue. Looks like someone scanned AWS, connected to all public redis servers, and possibly ran "CONFIG SET REQUIREPASS ''", thus locking down the running instance of redis. Once you restart redis, the config is restored to normal.

    Best thing would be to use AWS security group policy and block port 6379 for public.

提交回复
热议问题