MySQL Configuration

CloudPanel v1 is obsolete

CloudPanel v1 is obsolete; check out the CloudPanel v2 Docs.

Configuration

To make changes on the MySQL Configuration, do the following:

  1. Open the configuration file as root user:
nano /etc/mysql/my.cnf
  1. Make changes e.g, adjusting some parameters like innodb_buffer_pool_size.

  2. Restart MySQL to apply changes:

systemctl restart mysql

Slow Query Log

The Slow Query Log is useful to log consists of SQL statements that take more than long_query_time seconds to execute.

To enable the Slow Query Log, do the following:

  1. Open the configuration file file.

  2. Uncomment the following lines by removing the semicolon in the front:

;slow_query_log=1
;slow_query_log_file=/var/log/mysql/slow.log
;long_query_time=2
  1. Restart MySQL to apply changes:
systemctl restart mysql