글
[Spring + Mysql] caching_sha2_password 에러
SpringFramework/Hello ERROR👋🏻
2019. 11. 2. 11:16
📩에러메세지 📩
java.sql.SQLException: Unable to load authentication plugin 'caching_sha2_password'.
Mysql 비밀번호를 설정할 때,
❌ALTER user root@localhost identified by '패스워드' 가 아닌
⭕️ALTER USER root@localhost IDENTIFIED WITH mysql_native_password BY '패스워드' 👈🏻DDL문으로 설정해주면 간단히 해결 가능!
깔끔해진 콘솔창☺️ 너무 좋당☺️
'SpringFramework > Hello ERROR👋🏻' 카테고리의 다른 글
[Spring 환경셋팅] Log4j2 라이브러리 적용 오류 (0) | 2019.11.13 |
---|---|
JDBC 연결 + 로케일을 인식할 수 없습니다. (0) | 2019.11.05 |
[Spring + Oracle] driverClassName 에러 (0) | 2019.11.05 |
[JUnit] Spring 테스트 코드 에러 (0) | 2019.10.30 |