본문 바로가기
MySQL_Maria

Mysql 8 설치 후 접속 오류 caching_sha2_password

by 타블로 2019. 4. 21.

1. my.ini 설정 변경

#default_authentication_plugin=caching_sha2_password
default_authentication_plugin=mysql_native_password

2. 패스워드 변경

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'root';