[Spring][mysql] Authentication plugin 'caching_sha2_password'. 에러
2021. 10. 11. 17:25ㆍ오류모음
728x90
원인
- 계정 권한 문제이다. 현 ip에서 연결할 수 있는 권한 Alter문을 이용해야한다.
해결
MySQL Command Line Client 실행
use 스키마이름;
ex) use spring5fs;
ALTER USER '아이디'@'localhost' IDENTIFIED WITH mysql_native_password BY '비밀번호';
⇒ '' 포함시켜야함
ex) ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'toor';
728x90
'오류모음' 카테고리의 다른 글
[Jupyter] Jupyter Notebook 실행안될때 (0) | 2021.10.11 |
---|---|
[ML] bayes_opt 설치 실패 (0) | 2021.10.11 |
[Windows] 이 앱은 사용자 보호를 위해 차단되었습니다. (0) | 2021.10.11 |
[Spring] [Tomcat] Several ports (8005, 8080, 8009) required by Tomcat v8.0 Server at localhost are already in use. (0) | 2021.10.11 |
[Spring] Closing inbound before receiving peer's close_notify 예외 (0) | 2021.10.11 |