2025-12-23 19:17:16 +08:00

68 lines
2.0 KiB
INI

[mysqld]
# GENERAL #
default-storage-engine = InnoDB
# MyISAM #
key-buffer-size = 32M
myisam-recover-options = FORCE
# SAFETY #
max-connect-errors = 1000000
innodb = FORCE
# DATA STORAGE #
datadir = /var/lib/mysql/
# BINARY LOGGING #
log-bin = /var/lib/mysql/mysql-bin
log_bin_index = /var/lib/mysql/mysql-bin.index
expire-logs-days = 14
sync-binlog = 1
# CACHES AND LIMITS #
tmp-table-size = 32M
max-heap-table-size = 32M
query-cache-type = 0
query-cache-size = 0
max-connections = 200
thread-cache-size = 50
open-files-limit = 65535
table-definition-cache = 4096
table-open-cache = 10240
tmp-disk-table-size = 5120M
max-statement-time = 3600
extra_port = 3307
extra_max_connections = 5
# INNODB #
innodb-flush-method = O_DIRECT
innodb-log-files-in-group = 2
innodb-log-file-size = 512M
innodb-flush-log-at-trx-commit = 1
innodb-file-per-table = 1
innodb-buffer-pool-size = {{ (ansible_memtotal_mb * 0.6)|round|int }}M
innodb-file-format = barracuda
innodb-large-prefix = 1
innodb-old-blocks-time = 5000
collation-server = utf8mb4_unicode_ci
character-set-server = utf8mb4
character-set-client-handshake = FALSE
max_allowed_packet = 512M
# LOGGING #
log-error = /var/lib/mysql/mysql-error.log
log-queries-not-using-indexes = 0
slow-query-log = 1
slow-query-log-file = /var/lib/mysql/mysql-slow.log
# Networking
bind-address = {{ private_ip }}
[mysql]
default-character-set = utf8mb4
[mysqldump]
max_allowed_packet = 512M