前情:
使用set password for root@localhost = ‘passwd’;set password for ‘root’@‘localhost’=‘passwd’;
update user set password=password(‘passwd’)
where user=‘root’ and host = ‘localhost’;
flush privileges;
以上方法均报错
解决办法:
su 登录操作系统的root用户
mysql -u root -p 直接回车以root用户身份进入mysql
use mysql;
show columns from user; 发现有authentication_string列
接下来步骤看下图:
成功!