一、忘记root密码
一、修改配置文件,进行免密登录;
1.以管理员身份运行cmd,输入net stop mysql,终止MySQL服务。
2.找到my.ini文件,在[mysql]下加入语句,skip-grant-tables,重启MySQL服务。
3.进入cmd,输入mysql -u root -p,输入密码时直接按回车,进入MySQL。
二、给root用户重置密码
1.首先查看当前root用户相关信息,在mysql数据库的user表中;
在MySQL中执行命令
show databases; //查看有几个数据库
use mysql; //进入mysql数据库中
select host,user,authentication_string,plugin from user;
//从user表中选取以下信息
//host: 允许用户登录的ip‘位置’%表示可以远程;
//user:当前数据库的用户名;
//authentication_string: 用户密码;在mysql 5.7.9以后废弃了password字段和password()函数;
//plugin: 密码加密方式;
2.如果当前root用户authentication_string字段下有内容,先将其设置为空;
执行命令:update user set authentication_string='' where user='root';
3.退出mysql, 在MySQL中输入 exit; ,或者使用快捷键ctrl+c,退出MySQL。
删除my.ini文件中的 skip-grant-tables 重启mysql服务。
4.使用root用户进行登录,因为上面设置了authentication_string为空,所以可以免密码登录;
在cmd中,执行命令:mysql -u root -p; ,随后直接回车。
5.使用ALTER修改root用户密码。
ALTER user 'root'@'localhost' IDENTIFIED BY '你自己想的密码'
至此修改成功; 重新使用新密码登录root即可;