J'ai eu la solution suivante :changer my.ini dans un [mysqld]
section comme celle-ci :
#default_authentication_plugin=caching_sha2_password (comment line!)
default_authentication_plugin=mysql_native_password (new line)
Connectez-vous à votre MySQL sous root dans un client en ligne de commande et exécutez :
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'xxx';
Où xxx
est votre mot de passe actuel.