mirror of
https://git.freebsd.org/ports.git
synced 2025-04-30 18:46:38 -04:00
Welcome MySQL 8.4 What is new in MySQL8.4 since MySQL 8.0: https://dev.mysql.com/doc/refman/8.4/en/mysql-nutshell.html HINT: MySQL8.2+ supports only 64-bit platforms!!! special thanks for the majority of the work on this port: samm aka Alex S.
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
|