报错:
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)

解决方法
一般这个错误是由密码错误引起,解决的办法自然就是重置密码

1、

#vim /etc/my.cnf

在[mysqld]后面任意一行添加“skip-grant-tables”用来跳过密码验证的过程
MySQL关于ERROR 1045 (28000)报错_第1张图片

2、
然后重启mysql

3、
输入mysql登录

4、

mysql> use mysql;
mysql> update user set password=password("你的新密码") where user="root";
mysql> flush privileges;
mysql> exit

5、
再次重启mysql,mysql -uroot -p进行登录

参考链接:古木堂博客