Heim > Datenbank > MySQL-Tutorial > Hauptteil

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

WBOY
Freigeben: 2016-06-01 13:32:19
Original
1260 Leute haben es durchsucht

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)
Nach dem Login kopieren

我怀疑当前的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>   
Nach dem Login kopieren

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

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

/usr/local/mysql/bin/mysqladmin –u root password ‘’;
Nach dem Login kopieren

 

 

bitsCN.com
Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!