Home  >  Article  >  Database  >  ERROR 1045 (28000): Access denied for user 'root'@'localh_MySQL

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

WBOY
WBOYOriginal
2016-06-01 13:32:191260browse

bitsCN.com

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

 

朋友问我问题:

m三ysql 升级了 5.0 -- 5.5导入的数据没问题, grant all privileges on *.* to test@'12.12.12.12';报错ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

我刚开始怀疑密码不对,让他换成grant all privileges on *.* to test@'12.12.12.12' identified by 'xxx'; 也不行

再换成grant all privileges on *.* to test@'12.12.12.12' identified by '';也不行

 

mysql> grant all privileges on *.* to test@'12.12.12.12' identified by '';ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)但是执行如下命令成功了mysql> grant select on *.* to test@'12.12.12.12' identified by '';Query OK, 0 rows affected (0.01 sec)

 

 

我怀疑当前的root帐号权限问题,让他执行show grants;

[sql] mysql> show grants;  +---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+  | Grants for root@localhost                                                                                                                                                                                                                                                                                                                                     |  +---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+  | GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, RELOAD, SHUTDOWN, PROCESS, FILE, REFERENCES, INDEX, ALTER, SHOW DATABASES, SUPER, CREATE TEMPORARY TABLES, LOCK TABLES, EXECUTE, REPLICATION SLAVE, REPLICATION CLIENT, CREATE VIEW, SHOW VIEW, CREATE ROUTINE, ALTER ROUTINE, CREATE USER, EVENT, TRIGGER ON *.* TO 'root'@'localhost' WITH GRANT OPTION |  | GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, REFERENCES, INDEX, ALTER, CREATE TEMPORARY TABLES, LOCK TABLES ON `mysql`.* TO 'root'@'localhost'                                                                                                                                                                                                         |  | GRANT PROXY ON ''@'' TO 'root'@'localhost' WITH GRANT OPTION                                                                                                                                                                                                                                                                                                  |  +---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+  3 rows in set (0.00 sec)  果然问题出来了,因为正常的root帐号权限如下:[html] mysql> show grants;  +---------------------------------------------------------------------+  | Grants for root@localhost                                           |  +---------------------------------------------------------------------+  | GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION |  | GRANT PROXY ON ''@'' TO 'root'@'localhost' WITH GRANT OPTION        |  +---------------------------------------------------------------------+  2 rows in set (0.00 sec)    mysql>   

 

 

 他的root帐号没有all privileges,所以分配别人all的时候就会报错。

我让他用mysqladmin重置root帐号试试看

/usr/local/mysql/bin/mysqladmin –u root password ‘’;

 

 

bitsCN.com
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