Jeg havde følgende løsning:skift my.ini i en [mysqld]
sektion som denne:
#default_authentication_plugin=caching_sha2_password (comment line!)
default_authentication_plugin=mysql_native_password (new line)
Opret forbindelse til din MySQL under root i en kommandolinjeklient, og kør:
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'xxx';
Hvor xxx
er din nuværende adgangskode.