Skip to content
Snippets Groups Projects
Commit 6e3280a9 authored by jurgenhaas's avatar jurgenhaas
Browse files

customer/zks/zks-website#31 Add support for skip-name-resolve and...

customer/zks/zks-website#31 Add support for skip-name-resolve and innodb_buffer_pool_instances and table_open_cache
parent 0513413c
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@ datadir = /var/lib/mysql
tmpdir = /tmp
lc-messages-dir = /usr/share/mysql
skip-external-locking
# skip-name-resolve
skip-name-resolve = 1
explicit_defaults_for_timestamp = 1
#
# Instead of skip-networking the default is now to listen only on
......@@ -126,6 +126,14 @@ innodb_flush_log_at_trx_commit = {{ mysql_innodb_flush_log_at_trx_commit }}
innodb_log_file_size = {{ mysql_innodb_log_file_size }}
innodb_log_buffer_size = {{ mysql_innodb_log_buffer_size }}
innodb_strict_mode = {{ mysql_innodb_strict_mode }}
{% if mysql_innodb_buffer_pool_instances is defined %}
innodb_buffer_pool_instances = {{ mysql_innodb_buffer_pool_instances }}
{% endif %}
{% if mysql_table_open_cache is defined %}
table_open_cache = {{ mysql_table_open_cache }}
{% endif %}
#
# * Security Features
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment