1、进入文件:vi /etc/my.cnf
2、按i键表示可以编辑;添加skip-grant-tables;按esc键,输入:wq保存退出
3、重启MysqL:sudo service MysqLd restart
2、提示输入密码按回车进入
4、查看root用户信息:select host, user, authentication_string, plugin from user;
5、更新root用户信息,把密码设置为空字符串:update user set authentication_string='' where user='root';
第三步、退出MysqL;注释掉/etc/my.cnf文件最后的 skip-grant-tables ;重启:sudo service MysqLd restart
第四步:设置密码
1、重新开启一个客户端;
2、登录MysqL(这时候还是不用输入密码,因为上面已经把密码设置为空字符串了);
3、修改root用户密码:ALTER USER 'root'@'localhost' IDENTIFIED WITH MysqL_native_password BY '你的密码';
4、退出MysqL后就可以用密码登录了
-----------------------------------
转至 -> https://blog.51cto.com/u_15127599/3305337