用户“root”已超出“max_questions”资源1

时间:2015-08-01 09:30:55

标签: php mysql

我错误地检查了mysql我更新了(max_questions = 1)。 现在我搜索谷歌和堆栈溢出这个解决方案,每个人都有一个答案,如

UPDATE mysql.user SET max_questions=0 WHERE User='root';
SET CHARACTER SET 'utf8'; SELECT @@character_set_client;
GRANT USAGE ON *.* TO 'root'@'localhost' WITH MAX_QUERIES_PER_HOUR 0;

但是没有人给出答案,即执行这些查询的位置,因为phpmyadmin显示此错误
错误

SQL查询:编辑编辑

SET CHARACTER SET'utf8';

MySQL说:文档

1226 - 用户“root”已超出“max_questions”资源(当前值:1)

1 个答案:

答案 0 :(得分:1)

在mysql中你使用mysql db,例如

use mysql;
update user set max_questions=0 where user = 'root';

where 0 is unlimited. Could be smaller number but in development I use 0.