• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

How to increase max_questions limit

M

Manojb

Guest
Hello,

I am getting the following error message which accessing my database through DBWeb Admin :-

#1226 - User '*****' has exceeded the 'max_questions' resource (current value: 100)

How can I increase max_questions limit
 
'max_questions' is the column of mysql.user table, so you should be able to increase it from MySQL directly with the query like:

> UPDATE mysql.user SET max_questions = 'new_value' where User = 'user_name';

new_value - is the increased value (> 100);
user_name - the problem user login (marked as ****** in your post)...
 
Hello DmitryT,

Thanks for your updated.

I have updated the max_questions limit but it still comes with the same error message.

#1226 - User '*****' has exceeded the 'max_questions' resource (current value: 100)

The database user is still using the old limit. Do I have to change some admin privileges to fix this.
 
Back
Top