• The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    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. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

External mysql and statistics

unlo

New Pleskian
Hello!

Plesk 9.2.2, sles 10sp2

We are using external mysql server for our clients, and plesk statistics do not count size of that external databases.

Is it a bug?
How counts plesk statistics of databases??
 
Hello,

The reason of this behavior is the fact that Parallels Plesk Panel (PP) is not counting the disk usage at the external storage. You can verify it at the PP database with the help of the following query:

mysql> select dom_id,dbases from disk_usage limit 3;
+--------+--------+
| dom_id | dbases |
+--------+--------+
| 1 | 6144 |
| 2 | 4096 |
| 3 | 0 |
+--------+--------+
3 rows in set (0.01 sec)

Where dom_id is the id of the domain and dbases is the space that is occupied by the databases.

Thank you
 
So, plesk counts real size on disk.

Seems to be we are need to do a parser...

We are use that trick for mysql counting (sql query) :
select SUM(data_length+index_length) from information_schema.tables where table_schema = 'dbname';
 
Back
Top