mysql修改密码
Posted 烟草的香味
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql修改密码相关的知识,希望对你有一定的参考价值。
进入mysql, 执行如下命令:
SET PASSWORD FOR ‘root‘@‘localhost‘ = PASSWORD(‘newpass‘);
5.7以后版本修改密码:
use mysql; select plugin from user where user = ‘root‘; # 将指修改为默认值 update user set plugin=‘mysql_native_password‘; # 修改密码 update user set authentication_string=password(‘root‘) where user=‘root‘ and host=‘localhost‘; # 刷新权限 flush privileges; # 修改密码 alter user ‘root‘@‘localhost‘ identified by ‘newPassword‘;
以上是关于mysql修改密码的主要内容,如果未能解决你的问题,请参考以下文章