오늘의 에러메세지
uncaught error error: er_not_supported_auth_mode: client does not support authentication protocol requested by server; consider upgrading mysql client
- MySQL 이 8로 업그레이드되면서 기본 인증 정책이 mysql_native_password 에서 caching_sha2_password 로 변경되서 나는 에러라고 해서,,,
우선 vscode 에서 mysql 에 접속 후 ,
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '1234';

caching_sha2_password 에서 mysql_native_password 설정을 변경했다.
No debugger available, can not send 'variables'
"console": "integratedTerminal",
- launch.json 파일에 추가만 해줬더니 에러가 해결되었다.
어떠한 피드백과 충고는 언제나 환영입니다 부탁드려요!