• Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is 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.

mysql resources used by domain

hardbrasil

Regular Pleskian
Hi fellas,
i am migrating some clients between Plesk panels
after migrate 10 domains the Health monitoring growup from MSQL from 1gb to 4.5gb
all 10 websites are small,

how can i see to identify which domain/subscription is consuming a lot of resources?
 
A very basic option would be:
#cd /var/lib/MySQL
#du -h --max-depth=1
This will show the size of all databases directories.
However, if your database names can't easily be matched to a Subscription, you might need to find a better way.
 
Hi Faris, Thank you. i run the command and i got one database with 5.7 gb but without name.
do you know what is this?
see the print, latest DB

databases.jpg
 
Ah. That's the total size of everything listed above.

Now, in my case, I felt that this number seemed larger than the total of all the individual directories. I don't know if this was really the case or not, and can't imagine why it would be bigger.
 
incidentally, rather than using du -h --max-depth=1 you can try just
# du -h | less

Then you can look in more detail at what is where.

You might also like to investigate ncdu
ncdu is a "graphical" version of du - it uses ncurses so works on the command line.
It is available in the epel repo if you happen to have that enabled on your machine.
 
Last edited:
Back
Top