Admin-Ahead Community

Linux => Control Panels => Plesk => Topic started by: nirmal on November 24, 2013, 10:27:21 pm

Title: How to find Plesk domains exceeding quotas
Post by: nirmal on November 24, 2013, 10:27:21 pm
Hello all,

How to find Plesk domains exceeding quotas?

Find domains that are over quota on disk space in Plesk:

Login to MySQL and execute the below command.

 mysql>SELECT domains.name, domains.real_size, Limits.value FROM domains, Limits WHERE domains.limits_id = Limits.id AND domains.real_size > Limits.value AND limit_name = 'disk_space' AND Limits.value != -1 ORDER BY domains.name ASC;

Thank you