MySQL ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using passw
程序员文章站
2024-02-14 17:02:10
MySQL ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: N...
MySQL ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO) 的解决办法和原因
这两天下载了MySQL5.7.11进行安装,发现到了初次使用输入密码的时候,不管怎样都进不去,即使按照网上说的在mysqld 下面添加skip-grant-tables也是不行,后来研究了两天,终于找出原因和解决办法。
复制代码 代码如下:
[mysqlld]
skip-grant-tables;
原因:Mysql 5.6及以后版本出处于安全考虑,root密码不为空。所以在MySQL的安装过程中,会生成一个随机密码作为初始密码。
这里的密码不能为空了,要输入随机设置的密码
密码在:
D:\Program Files\mysql-5.7.11-winx64\data的
中有:
这个就是随机的密码,使用root账户和这个随机密码就可以登录了。
推荐阅读
-
MySQL ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using passw
-
[MySQL登录错误] ERROR1045 (28000): Access denied for user '_MySQL
-
ERROR 1045 (28000): Access denied for user 'root'@'localhost
-
ERROR 1045 (28000): Access denied for user ''root''@''localhost'' (using passwor
-
MySQL ERROR 1045 (28000): Access denied for user 'root'@'loc
-
[MySQL登录错误] ERROR1045 (28000): Access denied for user '_MySQL
-
mysql ERROR 1045 (28000)-- Access denied for user解决方法
-
ubuntu18.0.4安装mysql并解决ERROR 1698 (28000): Access denied for user ''root''@''localhost''
-
mysql ERROR 1045 access denied for user 'root
-
Linux连接mysql报错:Access denied for user ‘root’@‘localhost’(using password: YES)的解决