赞
踩
在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’@‘%’
auth_plugins代指加密的插件,new password代指修改的新密码。auth_plugins具体是什么,需要查看当前密码验证插件。
可以看到默认的插件是 caching_sha2_password,所以修改密码的命令应该是
alter user ‘root’@‘%’ identified with caching_sha2_password by ‘new password’
[ MySQL8.0忘记密码 ](MySQL8.0忘记密码,重置密码详细流程及过程中会遇到的问题解决 - 知乎 (zhihu.com))
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。