mysql忘记密码
Posted 下士闻道
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql忘记密码相关的知识,希望对你有一定的参考价值。
在/ect/my.cnf中添加如下:
skip-grant-tables
sudo mysqld restart
mysql回车,进入到sql
>user mysql;
>update user set authentication_string=password(‘123qwe‘) where user=‘root‘ and Host = ‘localhost‘;
搞定;
删掉skip-grant-tables;
sudo mysqld restart
完事;
以上是关于mysql忘记密码的主要内容,如果未能解决你的问题,请参考以下文章