MySQL/MariaDB
Easy to implement, high impact:
Some of those optimizations might only be possible on VPS or dedicated servers, not on shared hosting with cPanel.
1. Replace MySQL with MariaDB
MariaDB is an open-source fork of MySQL that provides better performance.
The nice part is that MariaDB is a "drop-in replacement" for MySQL, meaning that you can just install it over the current MySQL installation and it should work.
2. Set correct MySQL configuration
By default, MySQL won't use all the server resources. You have to tell MySQL explicitly how much memory it can use.
It is important to change your the innodb-buffer-pool-size
based on the available RAM size.
Here is a recommended MySQL config for an 8GB/4vCPU server:
[mysqld]
# InnoDB
innodb_buffer_pool_size = 5600M # This should be around 70% of your total RAM
innodb_log_file_size = 1400M # Around 15-25% of buffer-pool-size
innodb_file_per_table = 1 # Don't fragment tables across files
innodb_flush_log_at_trx_commit = 2 # Increases tracking write speed
max_connections = 100
max_allowed_packet = 16M
# Disable bin log - more efficient, but less robust:
# this drastically reduces storage size and improves performance
# but you lose the replication and restore capabilities
skip-log-bin
3. Delete unnecessary data more often
The highest database usage in UXWizz are usually the heatmaps and session recordings. By default, UXWizz keeps this data until the user associated with it is also removed.
If your database size grew too big, or you want to reduce the size before a server migration, you can safely delete old heatmaps and session recordings.
For example, if you only want to delete the oldest 50K heatmap entries and oldest 10K recordings, you can run those MySQL queries:
// Clear old heatmap data
DELETE FROM ust_movements ORDER BY ID ASC limit 50000;
DELETE FROM ust_clicks ORDER BY ID ASC limit 50000;
// Clear old record data
DELETE FROM ust_records ORDER BY ID asc LIMIT 10000;
DELETE FROM ust_partials ORDER BY ID asc LIMIT 10000;
A useful tool: MySQLTuner-perl
The optimal configuration settings depend on the database size and system specs. There are tools that can automatically suggest the best configuration for your specific setup. One such tools is MySQLTuner-perl
To install on use it, simply download the Perl file and executed it:
cd /
wget https://raw.githubusercontent.com/major/MySQLTuner-perl/master/mysqltuner.pl -O mysqltuner.pl
wget https://raw.githubusercontent.com/major/MySQLTuner-perl/master/basic_passwords.txt -O basic_passwords.txt
wget https://raw.githubusercontent.com/major/MySQLTuner-perl/master/vulnerabilities.csv -O vulnerabilities.csv
perl mysqltuner.pl
Last updated
Was this helpful?