as tại đây nói:
1. nếu bạn ở chế độ bỏ qua bảng cấp
trong mysqld_safe:
UPDATE mysql.user SET authentication_string=null WHERE User='root';
FLUSH PRIVILEGES;
exit;
và sau đó, trong terminal:
mysql -u root
trong mysql:
ALTER USER 'root'@'localhost' IDENTIFIED WITH caching_sha2_password BY 'yourpasswd';
2. không ở chế độ bỏ qua-cấp-bảng
chỉ trong mysql:
ALTER USER 'root'@'localhost' IDENTIFIED WITH caching_sha2_password BY 'yourpasswd';