mysql5.7中user表的password字段已被取消,取而代之的是 authentication_string 字段,当然我们更改用户密码也不可以用原来的修改user表来实现了
方法一:
mysql> update mysql.user set authentication_string=password('123qwe') where user='root' and Host='localhost';
方法二:
mysql> alter user 'root'@'localhost' identified by '123';
方法三:
mysql> set password for 'root'@'localhost'=password('123');
最后刷新权限:
mysql> flush privileges;
网友评论