Mặc định database của bạn khi cài vào sẽ không hỗ trợ lưu cache các truy vấn từ database nên điều đó có thể sẽ làm website bạn hơi chậm.

Tối ưu MariaDB trên Ubuntu 24.04

Tối ưu MariaDB

Mở tập tin /etc/mysql/mariadb.cnf và đặt nội dung dưới vào cuối.

[mysqld]
basedir                         = /usr
bind_address                    = 127.0.0.1
pid_file                        = /run/mysqld/mysqld.pid
port                            = 3306
socket                          = /run/mysqld/mysqld.sock
tmpdir                          = /tmp

query_cache_type                = 1
connect_timeout                 = 60

# Khoảng 50% dung lượng RAM
innodb_buffer_pool_size         = 8G

innodb_flush_log_at_trx_commit  = 2
innodb_flush_neighbors			= 0

low_priority_updates            = 1
disable_log_bin                 = 1
log_error                       = /var/lib/mysql/mysql_error.log
slow_query_log_file             = /var/lib/mysql/mysql_slow.log

Nhớ khởi động lại MariaDB:

systemctl restart mariadb

Chúc các bạn thành công!

5/5 (2 bình chọn)