我是 Linux 用户,我已将 mysql 中的 root 密码更新为:
update user set password=PASSWORD('xxxx') where user='root' and host='localhost';
flush privileges;
quit;
当我尝试以以下身份登录时:
mysql -u root -p
xxxx
An Error occurred :- Access denied for 'ROOT'@'LOCALHOST' using password yes
可能是什么问题呢?我知道如何使用 root 用户通过终端重置 mysql root 密码。我只是想知道为什么这不起作用。