comme ici dit :
1.si vous êtes en mode skip-grant-tables
dans mysqld_safe :
UPDATE mysql.user SET authentication_string=null WHERE User='root';
FLUSH PRIVILEGES;
exit;
puis, dans le terminal :
mysql -u root
dans mysql :
ALTER USER 'root'@'localhost' IDENTIFIED WITH caching_sha2_password BY 'yourpasswd';
2.pas en mode skip-grant-tables
juste dans mysql :
ALTER USER 'root'@'localhost' IDENTIFIED WITH caching_sha2_password BY 'yourpasswd';