Home >Database >Mysql Tutorial >MySQL ERROR 1045 (28000): Access denied for user 'root'@'loc_MySQL

MySQL ERROR 1045 (28000): Access denied for user 'root'@'loc_MySQL

WBOY
WBOYOriginal
2016-05-27 13:45:022208browse

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账户和这个随机密码就可以登录了。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn