2015-05-29 19:42:43 +02:00
|
|
|
# Here follows entries for some specific programs
|
|
|
|
|
|
|
|
# The MariaDB server
|
|
|
|
[mysqld]
|
|
|
|
port = {{ mysql_db_port }}
|
2015-07-13 14:17:42 +02:00
|
|
|
socket = {{ mysql_socket }}
|
2015-05-29 19:42:43 +02:00
|
|
|
max_connections = {{ mysql_db_max_connections }}
|
2016-03-17 21:35:04 +01:00
|
|
|
datadir = {{ mysql_data_dir }}
|
|
|
|
log_error = {{ mysql_log_dir }}/error.log
|
2015-05-29 19:42:43 +02:00
|
|
|
skip-external-locking
|
|
|
|
key_buffer_size = 16M
|
2016-10-25 13:32:09 +02:00
|
|
|
max_allowed_packet = {{ mysql_max_allowed_packet }}
|
2015-05-29 19:42:43 +02:00
|
|
|
table_open_cache = 512
|
|
|
|
sort_buffer_size = 8M
|
|
|
|
net_buffer_length = 8K
|
|
|
|
read_buffer_size = {{ mysqld_db_read_buffer_size }}
|
|
|
|
read_rnd_buffer_size = {{ mysql_db_read_rnd_buffer_size }}
|
|
|
|
myisam_sort_buffer_size = 16M
|
2016-12-16 15:29:58 +01:00
|
|
|
|
|
|
|
{% if mysqld_sql_mode is defined %}
|
|
|
|
sql_mode = {{ mysqld_sql_mode }}
|
|
|
|
{% endif %}
|
|
|
|
{% if mysqld_ft_stopword_file is defined %}
|
|
|
|
ft_stopword_file = {{ mysqld_ft_stopword_file }}
|
|
|
|
{% endif %}
|
|
|
|
{% if mysqld_ft_min_word_lenght is defined %}
|
|
|
|
ft_min_word_len = {{ mysqld_ft_min_word_lenght }}
|
|
|
|
{% endif %}
|
2016-10-25 13:32:09 +02:00
|
|
|
ft_boolean_syntax = '{{ mysql_ft_boolean_syntax | default('+ -><()~*:\"\"&|') }}'
|
2015-05-29 19:42:43 +02:00
|
|
|
|
|
|
|
# Point the following paths to different dedicated disks
|
|
|
|
#tmpdir = /tmp/
|
|
|
|
|
2015-07-13 14:17:42 +02:00
|
|
|
# Instead of skip-networking the default is now to listen only on
|
|
|
|
# localhost which is more compatible and is not less secure.
|
|
|
|
{% if mysql_listen_on_ext_int %}
|
|
|
|
bind-address = 0.0.0.0
|
|
|
|
{% else %}
|
|
|
|
bind-address = 127.0.0.1
|
|
|
|
{% endif %}
|
2015-05-29 19:42:43 +02:00
|
|
|
|
|
|
|
# Enable binary logging. This is required for acting as a MASTER in a
|
|
|
|
# replication configuration. You also need the binary log if you need
|
|
|
|
# the ability to do point in time recovery from your latest backup.
|
|
|
|
log-bin=mysql-bin
|
|
|
|
|
|
|
|
# binary logging format - mixed recommended
|
|
|
|
binlog_format=mixed
|
|
|
|
|
|
|
|
# Uncomment the following if you are using InnoDB tables
|
2016-03-17 21:35:04 +01:00
|
|
|
innodb_data_home_dir = {{ mysql_data_dir }}
|
2015-05-29 19:42:43 +02:00
|
|
|
innodb_data_file_path = {{ mysql_db_innodb_data_file_path }}
|
2016-03-17 21:35:04 +01:00
|
|
|
innodb_log_group_home_dir = {{ mysql_data_dir }}
|
2015-05-29 19:42:43 +02:00
|
|
|
# You can set .._buffer_pool_size up to 50 - 80 %
|
|
|
|
# of RAM but beware of setting memory usage too high
|
|
|
|
innodb_buffer_pool_size = {{ mysql_db_innodb_buffer_pool_size }}
|
|
|
|
innodb_additional_mem_pool_size = {{ mysql_db_innodb_additional_mem_pool_size }}
|
|
|
|
# Set .._log_file_size to 25 % of buffer pool size
|
|
|
|
innodb_log_file_size = {{ mysql_db_innodb_log_file_size }}
|
|
|
|
innodb_log_buffer_size = {{ mysql_db_innodb_log_buffer_size }}
|
|
|
|
innodb_flush_log_at_trx_commit = 1
|
|
|
|
innodb_lock_wait_timeout = 50
|
|
|
|
|
|
|
|
[mysqld_safe]
|
2015-07-13 14:17:42 +02:00
|
|
|
open-files-limit = {{ mysql_safe_open_files_limit }}
|