• 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!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • 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.

High MySQL usage after upgrade to 10.3.1

D

dmcubed

Guest
After I upgraded from 10.1 to 10.3.1 I started to get health warnings about high MySQL CPU usage with no increase in site traffic. I have a number of questions.

1. What is SYSTEM TIME (the green part of the chart)? Since the upgrade this is now 40 to 50 times more than the user time (red part). Before the upgrade they were about the same.

2. Is there a bug that anyone knows about?

3. Is plesk causing this issue by trying to monitor and record too much information?

Thanks,

David
 
Check your logs!

Code:
/var/log/mysqld.log
/var/log/messages
/var/log/secure
 
Last edited by a moderator:
Can I get to the logs via Plesk? What are the menu picks? I don't have root access to my server to load them directly (part of the support contract!).
 
Can I get to the logs via Plesk? What are the menu picks? I don't have root access to my server to load them directly (part of the support contract!).

Get a SSH connection to your webserver.

If you don't have access then you could get this by selecting a "tcsh" or "sh" shell into your domain preferences. Do not selecting a crooted environment. Than you can't see anything at your web-server (Your server creates a secured environment by a crooted shell)
Be aware that you are not have the full rights as root, but you can try only read some files by typing "sudo 'execute commando'".

Read also "man sudo" at your web-server.

- Linux commands at your client, or (download and) use Putty for Windows based systems:
Code:
ssh -p 22 [email protected]
Put then this at you command-line to watch your log-files:
Code:
sudo less /var/log/messages
sudo less /var/log/secure
sudo less /var/log/mysqld.log
By typing "sudo ls -aclh /var/log/" can you actually see all log-files.
 
Last edited by a moderator:
Back
Top