赞
踩
当多个开发人员频繁访问同一个数据库时,出现 User ‘XXX’ has exceeded the ‘max_questions’ resource (current value: 100) 错误,即超过了每小时的最大资源的限制数
调高max_quesetions设置, 直接修改user表,然后刷新权限即可
alter user ‘用户名’@‘主机名’ with max_queries_per_hour 0;
flush privileges;
在MySQL中,有许多最大限制,如:
max_connections_per_hour: 该用户每小时允许打开的session数
max_user_connections:限制有多少用户链接MySQL服务器
max_queries_per_hour:限制用户每小时运行的查询数量
max_updates_per_hour:限制用户每小时的修改数据库数据的数据
如果不想在操作过程出现以上问题,只需要改变一下数据库用户的设置即可:
alter user ‘用户名’@‘主机名’ with max_connections_per_hour 0 max_queries_per_hour 0 max_updates_per_hour 0 max_user_connections 0;
flush privileges;
0代表无限制
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。