大家好,又见面了,我是你们的朋友全栈君。
我们在安装使用MySQl 时,有时可能避免不了忘记密码,如果你忘记密码,可以按照如下方案进行操作:
skip-grant-tables
net stop mysql
net start mysql
重启后, 以 mysql -uroot -p 登陆 会发现我们可以不需要密码就可以登陆
mysql -uroot -p
use mysql
然后更新 password
update user set authentication_string = password ( 'new-password' ) where user = 'root' ;
注:这里要更改的是 authentication_string, 而不是password 字段 输入
update user set Password=password('new-password') where user='root'
会报错: ERROR 1054 (42S22): Unknown column ‘password’ in ‘field list’;
原因是 mysql 数据库下已经没有password 字段了,password 字段改成了 authentication_string
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/145855.html原文链接:https://javaforall.cn