步骤一:使用root账户登录MySQL。
mysql -u root -p
步骤二:切换到mysql数据库。
use mysql;
步骤三:查看当前账户和密码。
select user,authentication_string from user;
步骤四:修改root账户密码。
alter user 'root'@'localhost' identified with mysql_native_password by 'new password';
其中,’new password’更换为你要设置的新密码。
步骤五:刷新权限。
flush privileges;
完成上述步骤后,即可修改MySQL数据库密码。下次登录MySQL需要使用新密码。