当前位置:   article > 正文

【常见问题】User ‘XXX‘ has exceeded the ‘max_questions‘ resource (current value: 100)_user 'jyjf' has exceeded the 'max_connections_per_

user 'jyjf' has exceeded the 'max_connections_per_hour' resource

1、问题

当多个开发人员频繁访问同一个数据库时,出现 User ‘XXX’ has exceeded the ‘max_questions’ resource (current value: 100) 错误,即超过了每小时的最大资源的限制数

2、解决方法

调高max_quesetions设置, 直接修改user表,然后刷新权限即可

alter user ‘用户名’@‘主机名’ with max_queries_per_hour 0;
flush privileges;

3、其他限制

在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代表无限制

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/172659
推荐阅读
相关标签
  

闽ICP备14008679号