mysql8.0无法更改root密码解决方法*
1.命令:cat /etc/mysql/debian.cnf
使用这里的用户名和密码登录。
2.登陆成功后,使用命令:use mysql;
3.命令:update mysql.user set authentication_string=‘’ where User=‘root’;
4.命令:alter user ‘root’@‘localhost’ identified with mysql_native_password by ‘新密码’;
5.命令:FLUSH PRIVILEGES;
6.退出mysql,重新登录
命令:mysql -uroot -p新密码