mirror of
https://git.freebsd.org/ports.git
synced 2025-05-05 07:57:38 -04:00
Update deprecated configs in my.cnf.sample Some configs in my.cnf.sample are now deprecated. These should be replaced with their replacement, or removed if there is no replacement. - Replace deprecated slave-load-tmpdir with replica-load-tmpdir - Remove deprecated master-info-repository (it was set to the default) - Remove deprecated relay-log-info-repository (it was set to the default) - Replace deprecated expire_logs_days with binlog_expire_logs_seconds (multiply 30 days by 24 * 60 * 60) - Replace deprecated innodb_log_file_size with innodb_redo_log_capacity (preserving the same configured capacity, which was set to 256M * 2 log files) - Remove deprecated skip-symbolic-links (it is the default) PR: 266511 Sponsored by: Netzkommune GmbH
57 lines
2 KiB
Text
57 lines
2 KiB
Text
[client]
|
|
port = 3306
|
|
socket = /tmp/mysql.sock
|
|
|
|
[mysql]
|
|
prompt = \u@\h [\d]>\_
|
|
no_auto_rehash
|
|
|
|
[mysqld]
|
|
user = mysql
|
|
port = 3306
|
|
socket = /tmp/mysql.sock
|
|
bind-address = 127.0.0.1
|
|
basedir = %%PREFIX%%
|
|
datadir = %%MY_DBDIR%%
|
|
tmpdir = %%MY_TMPDIR%%
|
|
replica-load-tmpdir = %%MY_TMPDIR%%
|
|
secure-file-priv = %%MY_SECDIR%%
|
|
log-bin = mysql-bin
|
|
log-output = TABLE
|
|
relay-log-recovery = 1
|
|
slow-query-log = 1
|
|
server-id = 1
|
|
sync_binlog = 1
|
|
sync_relay_log = 1
|
|
binlog_cache_size = 16M
|
|
binlog_expire_logs_seconds = 2592000
|
|
default_password_lifetime = 0
|
|
enforce-gtid-consistency = 1
|
|
gtid-mode = ON
|
|
safe-user-create = 1
|
|
lower_case_table_names = 1
|
|
explicit-defaults-for-timestamp = 1
|
|
myisam-recover-options = BACKUP,FORCE
|
|
open_files_limit = 32768
|
|
table_open_cache = 16384
|
|
table_definition_cache = 8192
|
|
net_retry_count = 16384
|
|
key_buffer_size = 256M
|
|
max_allowed_packet = 64M
|
|
long_query_time = 0.5
|
|
innodb_buffer_pool_size = 1G
|
|
innodb_data_home_dir = %%MY_DBDIR%%
|
|
innodb_log_group_home_dir = %%MY_DBDIR%%
|
|
innodb_data_file_path = ibdata1:128M:autoextend
|
|
innodb_temp_data_file_path = ibtmp1:128M:autoextend
|
|
innodb_flush_method = O_DIRECT
|
|
innodb_redo_log_capacity = 512M
|
|
innodb_log_buffer_size = 16M
|
|
innodb_write_io_threads = 8
|
|
innodb_read_io_threads = 8
|
|
innodb_autoinc_lock_mode = 2
|
|
|
|
[mysqldump]
|
|
max_allowed_packet = 256M
|
|
quote_names
|
|
quick
|