This page is original PmaControl documentation. It keeps a practical index structure for MySQL optimization work, without copying third-party content or depending on an external product.
Reading
The general log traces every connection and query. It is useful for short diagnostics, but expensive in production.
Collection
systemctl status mysql
journalctl -u mysql --since "1 hour ago"
SHOW FULL PROCESSLIST;
SHOW ENGINE INNODB STATUS\G
Correction
- Confirm the symptom with logs and metrics.
- Isolate the responsible account, database, query, or limit.
- Apply a targeted correction.
- Verify that the signal decreases after deployment.