美文网首页
mysql 5.7 修改账号密码

mysql 5.7 修改账号密码

作者: 莱布尼茨不会求导 | 来源:发表于2019-02-17 11:29 被阅读0次

    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;

    相关文章

      网友评论

          本文标题:mysql 5.7 修改账号密码

          本文链接:https://www.haomeiwen.com/subject/hucgeqtx.html