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

来源:互联网 发布:ubuntu gnome桌面安装 编辑:程序博客网 时间:2024/05/29 19:21

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;

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帐号权限如下:

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 ‘’;

 

最后找到原因所在, 朋友忘记了执行 mysql_fix_privilege_tables 来脚本来升级授权表