less than 1 minute read

Sequel pro 오류

MySQL said: Authentication plugin ‘caching_sha2_password’ cannot be loaded: dlopen(/usr/local/lib/plugin/caching_sha2_password.so, 2): image not found

my.cnf 파일 찾아서 추가

default-authentication-plugin=mysql_native_password

mysql -u root -p

ALTER USER ‘root’@’localhost’ IDENTIFIED WITH mysql_native_password BY ‘[password]’;

exit

brew services restart mysql

Categories:

Updated: