Maison > base de données > tutoriel mysql > le corps du texte

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

WBOY
Libérer: 2016-06-01 13:32:19
original
1260 Les gens l'ont consulté

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)
Copier après la connexion

我怀疑当前的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>   
Copier après la connexion

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

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

/usr/local/mysql/bin/mysqladmin –u root password ‘’;
Copier après la connexion

 

 

bitsCN.com
Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!