Mysql max_questions

User 'weixin' has exceeded the 'max_questions' resource (current value: 1000)

 使用Mysql执行操作的时候,过了一段时间提示这个问题;

 修改方法:

use mysql;
update user set max_questions=0;
flush privileges;

 检测下是不是改成功了;

mysql> use mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
 
Database changed
mysql>

当然也可以使用第三方的客户端



 

猜你喜欢

转载自sants.iteye.com/blog/2123416