mysql输入正确密码连接不上怎么办

问题还原:

(推荐教程:mysql数据库学习教程)

登录

mysql -uroot -proot

报错:

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

解决思路:

排查1:

直接输入mysql,连接成功show databases; 只有information_schema & test两张表查了下说是权限不够。

排查2:

首先stop mysql:

service mysqld stop;

然后安全模式启动;

mysqld_safe --skip-grant-tables &

接着使用root登陆mysql :

mysql  root mysqluse mysql;

select Host,User,Password from user;

发现localhost这个Host没有配置用户名和密码。

解决方法:

update user set Password='root', User='root' where Host='localhost';

select Host,User,Password from user;

现在localhost已经有了对应的用户名和密码,kill掉mysqld_safe,重新启动mysql即可。

以上是 mysql输入正确密码连接不上怎么办 的全部内容, 来源链接: utcz.com/z/539443.html

回到顶部