gpt4 book ai didi

mysql - root 帐户在 MySQL 中不起作用

转载 作者:行者123 更新时间:2023-11-29 06:13:57 26 4
gpt4 key购买 nike

我以 root 身份登录 MySQL 数据库。我尝试运行以下命令:



mysql> GRANT ALL ON *.* TO 'root'@'%'
-> IDENTIFIED BY '[password]'
-> WITH GRANT OPTION;
ERROR 1045 (28000): Access denied for user 'root'@'%' (using password: YES)
mysql>

我收到以下错误:

错误 1045 (28000):用户“root”@'%' 的访问被拒绝(使用密码:YES)

我假设我的 root 用户设置不正确。有什么想法吗?

编辑


mysql> show grants for root
-> ;
+-----------------------------------------------------------------------------------------------------+
| Grants for root@% |
+-----------------------------------------------------------------------------------------------------+
| GRANT USAGE ON *.* TO 'root'@'%' IDENTIFIED BY PASSWORD '*738393F115A47ACE272D98F4719B8491A2B8296F' |
| GRANT ALL PRIVILEGES ON `sometable`.* TO 'root'@'%' WITH GRANT OPTION |
| GRANT ALL PRIVILEGES ON `Test`.* TO 'root'@'%' WITH GRANT OPTION |
+-----------------------------------------------------------------------------------------------------+
3 rows in set (0.00 sec)

最佳答案

您可能使用名为 root 的帐户登录数据库,但您所在的帐户没有正确的权限。

mysql> select user();

然后是:

mysql> select * from mysql.user\G

查找与输出完全匹配的用户和主机列。查找grant_priv,它需要显示Y。很可能存在其他没有 grant_priv 的 root 帐户。

mysql> select * from mysql.user\G
*************************** 1. row ***************************
Host: localhost
User: root
Password: xxxxxxxxxxxxxxx
Select_priv: Y
Insert_priv: Y
Update_priv: Y
Delete_priv: Y
Create_priv: Y
Drop_priv: Y
Reload_priv: Y
Shutdown_priv: Y
Process_priv: Y
File_priv: Y
Grant_priv: Y
References_priv: Y
Index_priv: Y
Alter_priv: Y
Show_db_priv: Y
Super_priv: Y
Create_tmp_table_priv: Y
Lock_tables_priv: Y
Execute_priv: Y
Repl_slave_priv: Y
Repl_client_priv: Y
Create_view_priv: Y
Show_view_priv: Y
Create_routine_priv: Y
Alter_routine_priv: Y
Create_user_priv: Y
Event_priv: Y
Trigger_priv: Y
ssl_type:
ssl_cipher:
x509_issuer:
x509_subject:
max_questions: 0
max_updates: 0
max_connections: 0
max_user_connections: 0

关于mysql - root 帐户在 MySQL 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7692470/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com