环境 UBUNTU 18.04 + mysql 5.7.28 方法 1、打开mysql。 mysql -uroot 2、利用以下命令修改密码 use mysql; update mysql.user set authentication_string=password('123456') where user='root' and Host ='localhost'; update user set plugin="mysql_native_password"; flush privileges; quit; 运行的实际效果如下图。