mysql连接数据库报错:1045 - Access denied for user ‘root‘@‘localhost‘ (using password:YES)
连接数据库或者在Navicat连接数据库,报错信息为:1045 - Access denied for user 'root'@'localhost' (using password:YES)
连接数据库报错问题
一、报错问题提示信息
1.终端连接报错
# 终端连接报错提示信息
1045 - Access denied for user 'root'@'localhost' (using password:YES)
Navicat连接报错
二、解决方法:
以管理员身份运行cmd;
2.cd到mysql下的bin目录;
C:\Program Files\MySQL\MySQL Server 5.5\bin
cmd
3.停止mysql服务
# window环境 停止mysql服务命令
net stop mysql
# 虚拟机centos环境 停止mysql服务命令
service mysqld stop
4.mysql权限屏蔽
# window环境 停止mysql服务命令
mysqld --skip-grant-table
# 虚拟机centos环境 停止mysql服务命令
mysqld_safe --skip-grant-table
5.重新打开终端(快捷键:win+r)
mysql -u root mysql
6.重置mysql密码
# 重置root用户密码为:test132456
UPDATE user SET Password=PASSWORD(‘test123456’) where USER=‘root’;
重置密码成功
7.更新数据库
# 更新命令
FLUSH PRIVILEGES;
# 删除空user命名
delete from user where USER='';
三、连接数据库
终端连接数据库
# 连接数据库
mysql -u root -p
# 输输入重置的密码test123456
test123456
Navicat连接数据库
原文地址:https://blog.csdn.net/qq_28807911/article/details/129304572
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!