로딩
티스토리 데이터 처리 중입니다.

[Redis] 레디스 비밀번호 설정 io.lettuce.core.RedisCommandExecutionException: ERR Client sent AUTH, but no password is set

 [Redis] 레디스 비밀번호 설정 io.lettuce.core.RedisCommandExecutionException: ERR Client sent AUTH, but no password is set

안녕하세요. 오늘은 ERR Client sent AUTH, but no password is set 에러에 관한 Redis(레디스) 비밀번호 설정 하는 방법에 대해 알아보겠습니다. 

Java(자바) Gradle(그래들) 프로젝트에서 Redis(레디스)를 셋팅하다가 io.lettuce.core.RedisCommandExecutionException: ERR Client sent AUTH, but no password is set 이러한 에러를 볼 수 있습니다.이 에러는 Redis(레디스) 서버에 클라이언트가 인증을 시도했지만,  Redis(레디스) 서버의 설정에서 비밀번호가 설정되지 않았을 때 발생합니다.   Redis(레디스) 비밀번호 설정 방법1. config get requirepass 명령어를 통해 .....