我收到错误 1045 (28000):用户 'root'@'localhost' 的访问被拒绝(使用密码:NO)在 ubuntu 上使用命令 sudo mysql

I got ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO) with the command sudo mysql on ubuntu

我对 php 或 sql 这样的东西真的是个菜鸟,所以我参加了一个 coursera 课程,他们告诉我们安装 LAMP.

我有 Linux 和 Apache2,但对于 MySql,我遵循了本教程 how to install LAMP。我跟着它,在我们必须 运行 sudo mysql 的地方之后,我得到了 ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)。但根据教程我应该得到:

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 22
Server version: 8.0.19-0ubuntu5 (Ubuntu)

Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> 

任何人都可以尽快帮我解决这个问题,因为我正在学习的课程有截止日期。另外,如果网络上有任何文档,请分享。

如果您需要有关错误的更多信息,请告诉我以及如何提取它们。

谢谢。

编辑:我的问题解决了,我在 运行 mysql -u root -p

后可以输入密码

您好,请在您的 mysql 控制台中尝试以下命令

mysql>  FLUSH PRIVILEGES;
mysql>  ALTER USER 'root'@'localhost' IDENTIFIED BY 'new_password';