victory的博客

长安一片月,万户捣衣声

0%

MySQL | Access denied for user 'root'@'localhost'

ERROR: Access denied for user ‘root’@’localhost’

在安装mysql时,安装过程中没有提示输入密码,安装完成之后,在终端输入mysql报错Access denied for ‘root’@’localhost’,但是使用sudo mysql可以进入。

Solution:

1.在终端输:sudo mysql 进入mysql
2.mysql> use mysql
3.mysql> alter user ‘root’@’localhost’ identified with mysql_native_password by ‘your password’