次の解決策がありました:change my.ini [mysqld]
で このようなセクション:
#default_authentication_plugin=caching_sha2_password (comment line!)
default_authentication_plugin=mysql_native_password (new line)
コマンドラインクライアントのルートでMySQLに接続し、次を実行します。
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'xxx';
ここでxxx
現在のパスワードです。