当前位置:   article > 正文

mysql8.0 修改root密码_mlsql8.0修改root密码

mlsql8.0修改root密码

修改命令

在mysql5.7版本中可以使用以下语句来修改用户密码

update user set authentication_string = password(“root”) where user = “root”;

但是mysql8已经废弃了password()函数,而且authentication_string字段下存储的密码必须加密,现需要使用另外种方式来修改密码

alter user ‘root’@‘localhost’ identified with auth_plugin by ‘new password’

参数分析

接下来对命令中需要注意的参数做简单的介绍,前提是知道mysql旧密码,如果不知道,后文会分享教程。

已知旧密码

‘root’@‘localhost’也可能是’root’@‘%’,具体什么样需要在mysql库中查看user表,笔者这里是’root’@‘%’

image.png

auth_plugins代指加密的插件,new password代指修改的新密码。auth_plugins具体是什么,需要查看当前密码验证插件。

image.png

可以看到默认的插件是 caching_sha2_password,所以修改密码的命令应该是

alter user ‘root’@‘%’ identified with caching_sha2_password by ‘new password’

忘记旧密码

[ MySQL8.0忘记密码 ](MySQL8.0忘记密码,重置密码详细流程及过程中会遇到的问题解决 - 知乎 (zhihu.com))

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/310276
推荐阅读
相关标签
  

闽ICP备14008679号