• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Allow overuse

theywill

Basic Pleskian
Since upgrading from Plesk 8.x to 9.x, instead of having soft limits for each domain (allowed overuse), all of the domains are now set to suspend, once a resource limit is reached.

I see how I can set each domain, individually, to allow overuse, but how do I do it server-wide, for all domains?

Thanks for any help you can provide.
 
You can't do it via Plesk interface, but you can update 'domains' table in Plesk database with something like:

update domains set overuse='true';

It should help.
 
Hi Igor,

I've tested switching on/off the overuse setting for a domain in the Plesk web interface and I've noticed that the "overuse" column of the "domains" table always remain set to "false".

Instead the records in the dom_param table with param values of OveruseBlock and OveruseNotify are changed (true/false).

Can you explain the difference and if they query you provided is still the recommended way to disable automatic suspension when over resource usage for all domains?

Thanks.
 
I think overuse field in domains table it's only status of overuse and not permission to overuse.
Unfortunetely I can't find overuse permission settings in group operations and need to try with dom_param table.
 
ok, I found:

update dom_param set val='66616c7365' WHERE param='OveruseBlock';

66616c7365 is just hex('false')
All domains are allowed to overuse now.
 
Back
Top