Some minor changes.

This commit is contained in:
2018-02-28 04:55:43 +01:00
parent 70ecbee504
commit b9907a3a98
2 changed files with 238 additions and 221 deletions

View File

@@ -40,7 +40,7 @@ install_additional_debian_packages=true
_additional_debian_packages_mysql=""
_additional_debian_packages_percona="libperconaserverclient20-dev"
_additional_debian_packages_mariadb=""
_additional_debian_packages_mariadb="libmariadbclient-dev-compat"
_CRONTAB_BAKUP_FILE="$(mktemp)"
@@ -2542,7 +2542,7 @@ if ! $UPDATE_MYSQL || $_new_cnf_needed ; then
# The following options will be passed to all MySQL clients
[client]
port = $MYSQL_PORT
port = $MYSQL_PORT
socket = $MYSQL_UNIX_SOCKET
# Here follows entries for some specific programs
@@ -2551,26 +2551,26 @@ socket = $MYSQL_UNIX_SOCKET
# This was formally known as [safe_mysqld]. Both versions are currently parsed.
[mysqld_safe]
socket = $MYSQL_UNIX_SOCKET
nice = 0
nice = 0
open-files-limit = $(ulimit -Hn)
innodb_open_files = $(ulimit -Hn)
innodb-open-files = $(ulimit -Hn)
# The MySQL server
[mysqld]
port = $MYSQL_PORT
port = $MYSQL_PORT
socket = $MYSQL_UNIX_SOCKET
## - sql-mode
## - sql_mode
## -
## - To be compartible with older programming on mysql 5.6
## -
sql-mode = \"ONLY_FULL_GROUP_BY,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION\"
## - secure-file-priv
## - secure_file_priv
## -
## - This variable is used to limit the effect of data import and export operations,
## - such as those performed by the LOAD DATA and SELECT ... INTO OUTFILE statements
@@ -2603,7 +2603,7 @@ sql-mode = \"ONLY_FULL_GROUP_BY,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,N
#secure-file-priv = \"\"
## - local-infile
## - local_infile
## -
## - This variable controls server-side LOCAL capability for LOAD DATA statements.
## - Depending on the local_infile setting, the server refuses or permits local data
@@ -2723,10 +2723,10 @@ server-id = 1
## -
## - Vorgabewert ist 100
## -
#max_connections = 300
#max-connections = 300
## - explicit_defaults_for_timestamp
## - explicit-defaults_for_timestamp
## -
## - This variable was added in MySQL 5.6.6
## -
@@ -2740,7 +2740,7 @@ server-id = 1
## - As indicated by the warning, to turn off the nonstandard behaviors,
## - enable the new .
## -
explicit_defaults_for_timestamp = TRUE
explicit-defaults-for-timestamp = TRUE
## - MySQL Fehlermeldungen
@@ -2778,10 +2778,10 @@ low-priority-updates = 1
## - in use by another thread. Otherwise, MySQL acquires a normal
## - write lock and inserts the row into the hole.
## -
concurrent_insert = 2
concurrent-insert = 2
## - open-files-limit
## - open_files_limit
## -
## - put the following lines into /etc/security/limits.conf
## -
@@ -2791,7 +2791,7 @@ concurrent_insert = 2
## - see also http://linux-vserver.org/Ulimit_Nofiles
## -
open-files-limit = $(ulimit -Hn)
innodb_open_files = $(ulimit -Hn)
innodb-open-files = $(ulimit -Hn)
## -------------------------
@@ -2803,15 +2803,15 @@ innodb_open_files = $(ulimit -Hn)
## - InnoDB stores the data and indexes for each newly created table in a
## - separate .ibd file, rather than in the system tablespace.
## -
innodb_file_per_table = 1
innodb-file-per-table = 1
## - innodb_data_home_dir
## -
## - Default: MySQL data directory
## -
#innodb_data_home_dir = /data/mysql
#innodb-data-home-dir = /data/mysql
#innodb_data_file_path = ibdata1:2000M;ibdata2:10M:autoextend
#innodb-data-file-path = ibdata1:2000M;ibdata2:10M:autoextend
## - innodb_log_group_home_dir
## -
@@ -2823,7 +2823,7 @@ innodb_file_per_table = 1
## - data directory. Their size is given by the size of the
## - innodb_log_file_size system variable.
## -
#innodb_log_group_home_dir = /var/lib/mysql/
#innodb_log-group-home-dir = /var/lib/mysql/
## - innodb_buffer_pool_size
## -
@@ -2840,8 +2840,8 @@ innodb_file_per_table = 1
## -
## - default: 134217728 (128M)
## -
#innodb_buffer_pool_size = 384M
#innodb_buffer_pool_size = 1024M
#innodb-buffer-pool-size = 384M
#innodb-buffer-pool-size = 1024M
## - innodb_additional_mem_pool_size
@@ -2851,8 +2851,8 @@ innodb_file_per_table = 1
## -
## - Default: 8388608 (8M)
## -
#innodb_additional_mem_pool_size = 20M
#innodb_additional_mem_pool_size = 40M
#innodb-additional-mem_pool-size = 20M
#innodb-additional-mem_pool-size = 40M
## - innodb_buffer_pool_instances
@@ -2866,7 +2866,7 @@ innodb_file_per_table = 1
## -
## - Default: 1
## -
#innodb_buffer_pool_instances = 1
#innodb-buffer-pool-instances = 1
## - innodb_log_file_size
@@ -2877,8 +2877,8 @@ innodb_file_per_table = 1
## -
## (Set .._log_file_size to 25 % of buffer pool size)
## -
#innodb_log_file_size = 100M
#innodb_log_file_size = 256M
#innodb-log-file-size = 100M
#innodb-log-file-size = 256M
## - innodb_log_buffer_size
## -
@@ -2887,8 +2887,8 @@ innodb_file_per_table = 1
## -
## - Default: 8388608 (8M)
## -
#innodb_log_buffer_size = 8M
#innodb_log_buffer_size = 32M
#innodb-log-buffer-size = 8M
#innodb-log-buffer-size = 32M
## - innodb_flush_log_at_trx_commit
## -
@@ -2913,8 +2913,8 @@ innodb_file_per_table = 1
## - DROP TABLE IF EXISTS..
## - ...
## -
#innodb_flush_log_at_trx_commit = 1
#innodb_flush_log_at_trx_commit = 2
#innodb-flush-log-at-trx-commit = 1
#innodb-flush-log-at-trx-commit = 2
## - innodb_lock_wait_timeout
## -
@@ -2923,7 +2923,7 @@ innodb_file_per_table = 1
## -
## - Default: 50
## -
#innodb_lock_wait_timeout = 50
#innodb-lock-wait-timeout = 50
## InnoDB specific variables
## -------------------------
@@ -2937,7 +2937,7 @@ innodb_file_per_table = 1
## -
## - Default: 2097152 (2M)
## -
sort_buffer_size = 2M
sort-buffer-size = 2M
## - key_buffer_size
@@ -2950,7 +2950,7 @@ sort_buffer_size = 2M
## -
## - Default: 8388608 (8M)
## -
key_buffer_size = 384M
key-buffer-size = 384M
## - read_buffer_size
@@ -2961,7 +2961,7 @@ key_buffer_size = 384M
## -
## - Default: 131072 (128K)
## -
read_buffer_size = 2M
read-buffer-size = 2M
## - read_rnd_buffer_size
## -
@@ -2970,7 +2970,7 @@ read_buffer_size = 2M
## -
## - Default: 262144 (256K)
## -
read_rnd_buffer_size = 8M
read-rnd-buffer-size = 8M
## - myisam_sort_buffer_size
@@ -2991,8 +2991,8 @@ myisam_sort_buffer_size = 64M
##
## - Default: 4MB (MySQL 5.6.6), 1MB before that.
## -
#max_allowed_packet = 4M
max_allowed_packet = 32M
#max-allowed-packet = 4M
max-allowed-packet = 32M
## - table_open_cache
@@ -3006,7 +3006,7 @@ max_allowed_packet = 32M
## - closed and reopened), then you should increase the value of the
## - table_open_cache variable.
## -
table_open_cache = 512
table-open-cache = 512
## - table_definition_cache
## -
@@ -3015,13 +3015,13 @@ table_open_cache = 512
## -
## - Default: (400 + (table_open_cache / 2) since 5.6.8, 400 before
## -
#table_definition_cache = 1680
#table-definition-cache = 1680
## - max_connect_errors
## - max-connect-errors
## -
## - Default: 100 (5.6.6), 10 (before)
## -
max_connect_errors = 999999
max-connect-errors = 999999
## - thread_concurrency
## -
@@ -3034,7 +3034,7 @@ max_connect_errors = 999999
## -
## - (Try number of CPU's*2 for thread_concurrency)
## -
#thread_concurrency = 16
#thread-concurrency = 16
## - thread_cache_size
## -
@@ -3044,7 +3044,7 @@ max_connect_errors = 999999
## -
## - Default: 8 + (max_connections / 100) (5.6.8) , 0 (before)
## -
thread_cache_size = 8
thread-cache-size = 8
## - thread_stack
## -
@@ -3058,7 +3058,7 @@ thread_cache_size = 8
## - actions.
## - Default: 262144 (256K)
## -
thread_stack = 262144
thread-stack = 262144
## - Unbenutze Datenbank Engines deaktivieren
@@ -3087,7 +3087,7 @@ log-error = $_mysql_error_log
## - Query Log
## -
#general-log = on
#general_log_file = $_mysql_log
#general-log-file = $_mysql_log
## - ft_min_word_len
@@ -3105,7 +3105,7 @@ log-error = $_mysql_error_log
## -
## -
## - Vorgabewert ist 4
#ft_min_word_len = 3
#ft-min-word-len = 3
## - ft_stopword_file
## -
@@ -3118,7 +3118,7 @@ log-error = $_mysql_error_log
## - Hinweis: Wird diese Variable geändern oder den Inhalt der Stoppwortdatei selbst,
## - müssen die FULLTEXT-Indizes neu erstellt werden (REPAIR TABLE tbl_name QUICK. ).
## -
#ft_stopword_file = /usr/local/mysql/stopwords_utf8_iso8859-15.txt
#ft-stopword-file = /usr/local/mysql/stopwords_utf8_iso8859-15.txt
@@ -3135,7 +3135,7 @@ log-error = $_mysql_error_log
## - SELECT SQL_NO_CACHE beginnen.
## - 2 : speichert nur diejenigen Anweisungen im Cache,
## - die mit SELECT SQL_CACHE beginnen.
query_cache_type = 1
query-cache-type = 1
## - query_cache_limit
@@ -3145,7 +3145,7 @@ query_cache_type = 1
## -
## - Vorgeabewert ist 1Mbyte
## -
query_cache_limit = 4M
query-cache-limit = 4M
## - query_cache_min_res_unit
@@ -3164,7 +3164,7 @@ query_cache_limit = 4M
## -
## - Vorgabewert ist 4Kbyte
## -
query_cache_min_res_unit = 8K
query-cache-min-res-unit = 8K
## - query_cache_size
@@ -3178,8 +3178,8 @@ query_cache_min_res_unit = 8K
## -
## - Vorgabewert ist 0, d. h. der Abfrage-Cache ist vorgabeseitig deaktiviert.
## -
#query_cache_size = 32M
query_cache_size = 128M
#query-cache-size = 32M
query-cache-size = 128M
## - query cache
## -------------
@@ -3195,7 +3195,7 @@ query_cache_size = 128M
## -
## - Vorgabewert ist 0 oder OFF
## -
slow_query_log = 1
slow-query-log = 1
## - long_query_time
@@ -3210,7 +3210,7 @@ slow_query_log = 1
## -
## - Vorgabewert ist 10
## -
long_query_time = 1
long-query-time = 1
## - slow_query_log_file
@@ -3219,7 +3219,7 @@ long_query_time = 1
## -
## - Vorgabewert ist <host-name>-slow.log
## -
slow_query_log_file = $_mysql_slow_query_log
slow-query-log-file = $_mysql_slow_query_log
## - log-queries-not-using-indexes
@@ -3229,8 +3229,8 @@ slow_query_log_file = $_mysql_slow_query_log
## -
## - Vorgabewert ist 0
## -
#log_queries_not_using_indexes = 1
log_queries_not_using_indexes = 0
#log-queries-not_using_indexes = 1
log-queries-not-using-indexes = 0
## - slow queries
## --------------
@@ -3251,7 +3251,7 @@ log_queries_not_using_indexes = 0
## -
## - Vorgabewert ist 128K
## -
#join_buffer_size = 384K
#join-buffer-size = 384K
@@ -3265,7 +3265,7 @@ log_queries_not_using_indexes = 0
## -
## - Vorgabewert ist 16Mbyte
## -
#max_heap_table_size = 96M
#max-heap-table-size = 96M
## - tmp_table_size
@@ -3281,7 +3281,7 @@ log_queries_not_using_indexes = 0
## - Note:
## - Effective in-memory tmp_table_size is limited to max_heap_table_size.
## -
#tmp_table_size = 96M
#tmp-table-size = 96M
## - angepasste Einstellungen
@@ -3290,7 +3290,7 @@ log_queries_not_using_indexes = 0
[mysqldump]
quick
max_allowed_packet = 32M
max-allowed-packet = 32M
[mysql]
no-auto-rehash
@@ -3299,10 +3299,10 @@ no-auto-rehash
local-infile = 1
[myisamchk]
key_buffer_size = 256M
sort_buffer_size = 256M
read_buffer = 2M
write_buffer = 2M
key-buffer-size = 256M
sort-buffer-size = 256M
read-buffer = 2M
write-buffer = 2M
## ------------------------------------------
@@ -3323,7 +3323,7 @@ write_buffer = 2M
## -
## -
## - Vorgabewert ist 4
#ft_min_word_len = 3
#ft-min-word.len = 3
## - angepasste Einstellungen
## ------------------------------------------
@@ -3333,7 +3333,7 @@ write_buffer = 2M
interactive-timeout
## - sql-mode
## - sql_mode
## -
## - To be compartible with older programming on mysql 5.6
## -
@@ -3359,7 +3359,7 @@ EOF" >> ${logdir}/main.log
# The following options will be passed to all MySQL clients
[client]
port = $MYSQL_PORT
port = $MYSQL_PORT
socket = $MYSQL_UNIX_SOCKET
# Here follows entries for some specific programs
@@ -3368,19 +3368,19 @@ socket = $MYSQL_UNIX_SOCKET
# This was formally known as [safe_mysqld]. Both versions are currently parsed.
[mysqld_safe]
socket = $MYSQL_UNIX_SOCKET
nice = 0
nice = 0
open-files-limit = $(ulimit -Hn)
innodb_open_files = $(ulimit -Hn)
open-files-limit = $(ulimit -Hn)
innodb-open-files = $(ulimit -Hn)
# The MySQL server
[mysqld]
port = $MYSQL_PORT
port = $MYSQL_PORT
socket = $MYSQL_UNIX_SOCKET
## - sql-mode
## - sql_mode
## -
## - To be compartible with older programming on mysql 5.6
## -
@@ -3540,7 +3540,7 @@ server-id = 1
## -
## - Vorgabewert ist 100
## -
#max_connections = 300
#max-connections = 300
## - explicit_defaults_for_timestamp
@@ -3557,7 +3557,7 @@ server-id = 1
## - As indicated by the warning, to turn off the nonstandard behaviors,
## - enable the new .
## -
explicit_defaults_for_timestamp = TRUE
explicit-defaults-for-timestamp = TRUE
## - MySQL Fehlermeldungen
@@ -3595,7 +3595,7 @@ low-priority-updates = 1
## - in use by another thread. Otherwise, MySQL acquires a normal
## - write lock and inserts the row into the hole.
## -
concurrent_insert = 2
concurrent-insert = 2
## - open-files-limit
@@ -3607,8 +3607,8 @@ concurrent_insert = 2
## -
## - see also http://linux-vserver.org/Ulimit_Nofiles
## -
open-files-limit = $(ulimit -Hn)
innodb_open_files = $(ulimit -Hn)
open-files-limit = $(ulimit -Hn)
innodb-open-files = $(ulimit -Hn)
## -------------------------
@@ -3620,15 +3620,15 @@ innodb_open_files = $(ulimit -Hn)
## - InnoDB stores the data and indexes for each newly created table in a
## - separate .ibd file, rather than in the system tablespace.
## -
innodb_file_per_table = 1
innodb-file-per-table = 1
## - innodb_data_home_dir
## -
## - Default: MySQL data directory
## -
#innodb_data_home_dir = /data/mysql
#innodb-data-home_dir = /data/mysql
#innodb_data_file_path = ibdata1:2000M;ibdata2:10M:autoextend
#innodb-data-file-path = ibdata1:2000M;ibdata2:10M:autoextend
## - innodb_log_group_home_dir
## -
@@ -3640,9 +3640,9 @@ innodb_file_per_table = 1
## - data directory. Their size is given by the size of the
## - innodb_log_file_size system variable.
## -
#innodb_log_group_home_dir = /var/lib/mysql/
#innodb-log-group-home-dir = /var/lib/mysql/
## - innodb_buffer_pool_size
## - innodb-buffer-pool-size
## -
## - The size in bytes of the buffer pool, the memory area where InnoDB
## - caches table and index data.
@@ -3657,8 +3657,8 @@ innodb_file_per_table = 1
## -
## - default: 134217728 (128M)
## -
#innodb_buffer_pool_size = 384M
#innodb_buffer_pool_size = 1024M
#innodb-buffer-pool-size = 384M
#innodb-buffer-pool-size = 1024M
## - innodb_additional_mem_pool_size
@@ -3668,8 +3668,8 @@ innodb_file_per_table = 1
## -
## - Default: 8388608 (8M)
## -
#innodb_additional_mem_pool_size = 20M
#innodb_additional_mem_pool_size = 40M
#innodb-additional-mem-pool-size = 20M
#innodb-additional-mem-pool-size = 40M
## - innodb_buffer_pool_instances
@@ -3683,7 +3683,7 @@ innodb_file_per_table = 1
## -
## - Default: 1
## -
#innodb_buffer_pool_instances = 1
#innodb-buffer-pool-instances = 1
## - innodb_log_file_size
@@ -3694,8 +3694,8 @@ innodb_file_per_table = 1
## -
## (Set .._log_file_size to 25 % of buffer pool size)
## -
#innodb_log_file_size = 100M
#innodb_log_file_size = 256M
#innodb-log-file-size = 100M
#innodb-log-file-size = 256M
## - innodb_log_buffer_size
## -
@@ -3704,8 +3704,8 @@ innodb_file_per_table = 1
## -
## - Default: 8388608 (8M)
## -
#innodb_log_buffer_size = 8M
#innodb_log_buffer_size = 32M
#innodb-log-buffer-size = 8M
#innodb-log-buffer-size = 32M
## - innodb_flush_log_at_trx_commit
## -
@@ -3730,8 +3730,8 @@ innodb_file_per_table = 1
## - DROP TABLE IF EXISTS..
## - ...
## -
#innodb_flush_log_at_trx_commit = 1
#innodb_flush_log_at_trx_commit = 2
#innodb-flush-log-at-trx-commit = 1
#innodb-flush-log-at-trx-commit = 2
## - innodb_lock_wait_timeout
## -
@@ -3740,7 +3740,7 @@ innodb_file_per_table = 1
## -
## - Default: 50
## -
#innodb_lock_wait_timeout = 50
#innodb-lock-wait-timeout = 50
## InnoDB specific variables
## -------------------------
@@ -3754,7 +3754,7 @@ innodb_file_per_table = 1
## -
## - Default: 2097152 (2M)
## -
sort_buffer_size = 2M
sort-buffer-size = 2M
## - key_buffer_size
@@ -3767,7 +3767,7 @@ sort_buffer_size = 2M
## -
## - Default: 8388608 (8M)
## -
key_buffer_size = 384M
key-buffer-size = 384M
## - read_buffer_size
@@ -3778,7 +3778,7 @@ key_buffer_size = 384M
## -
## - Default: 131072 (128K)
## -
read_buffer_size = 2M
read-buffer-size = 2M
## - read_rnd_buffer_size
## -
@@ -3787,7 +3787,7 @@ read_buffer_size = 2M
## -
## - Default: 262144 (256K)
## -
read_rnd_buffer_size = 8M
read-rnd-buffer-size = 8M
## - myisam_sort_buffer_size
@@ -3798,7 +3798,7 @@ read_rnd_buffer_size = 8M
## -
## - Default: 8388608 (8M)
## -
myisam_sort_buffer_size = 64M
myisam-sort-buffer-size = 64M
## - max_allowed_packet
@@ -3808,8 +3808,8 @@ myisam_sort_buffer_size = 64M
##
## - Default: 4MB (MySQL 5.6.6), 1MB before that.
## -
#max_allowed_packet = 4M
max_allowed_packet = 32M
#max-allowed-packet = 4M
max-allowed-packet = 32M
## - table_open_cache
@@ -3823,7 +3823,7 @@ max_allowed_packet = 32M
## - closed and reopened), then you should increase the value of the
## - table_open_cache variable.
## -
table_open_cache = 512
table-open-cache = 512
## - table_definition_cache
## -
@@ -3832,13 +3832,13 @@ table_open_cache = 512
## -
## - Default: (400 + (table_open_cache / 2) since 5.6.8, 400 before
## -
#table_definition_cache = 1680
#table-definition-cache = 1680
## - max_connect_errors
## -
## - Default: 100 (5.6.6), 10 (before)
## -
max_connect_errors = 999999
max-connect-errors = 999999
## - thread_concurrency
## -
@@ -3851,7 +3851,7 @@ max_connect_errors = 999999
## -
## - (Try number of CPU's*2 for thread_concurrency)
## -
#thread_concurrency = 16
#thread-concurrency = 16
## - thread_cache_size
## -
@@ -3861,7 +3861,7 @@ max_connect_errors = 999999
## -
## - Default: 8 + (max_connections / 100) (5.6.8) , 0 (before)
## -
thread_cache_size = 8
thread-cache-size = 8
## - thread_stack
## -
@@ -3875,7 +3875,7 @@ thread_cache_size = 8
## - actions.
## - Default: 262144 (256K)
## -
thread_stack = 262144
thread-stack = 262144
## - Unbenutze Datenbank Engines deaktivieren
@@ -3904,7 +3904,7 @@ log-error = $_mysql_error_log
## - Query Log
## -
#general-log = on
#general_log_file = $_mysql_log
#general-log_file = $_mysql_log
## - ft_min_word_len
@@ -3922,7 +3922,7 @@ log-error = $_mysql_error_log
## -
## -
## - Vorgabewert ist 4
#ft_min_word_len = 3
#ft-min-word-len = 3
## - ft_stopword_file
## -
@@ -3935,7 +3935,7 @@ log-error = $_mysql_error_log
## - Hinweis: Wird diese Variable geändern oder den Inhalt der Stoppwortdatei selbst,
## - müssen die FULLTEXT-Indizes neu erstellt werden (REPAIR TABLE tbl_name QUICK. ).
## -
#ft_stopword_file = /usr/local/mysql/stopwords_utf8_iso8859-15.txt
#ft-stopword-file = /usr/local/mysql/stopwords_utf8_iso8859-15.txt
@@ -3962,7 +3962,7 @@ query_cache_type = 1
## -
## - Vorgeabewert ist 1Mbyte
## -
query_cache_limit = 4M
query-cache-limit = 4M
## - query_cache_min_res_unit
@@ -3981,7 +3981,7 @@ query_cache_limit = 4M
## -
## - Vorgabewert ist 4Kbyte
## -
query_cache_min_res_unit = 8K
query-cache-min-res-unit = 8K
## - query_cache_size
@@ -3996,7 +3996,7 @@ query_cache_min_res_unit = 8K
## - Vorgabewert ist 0, d. h. der Abfrage-Cache ist vorgabeseitig deaktiviert.
## -
#query_cache_size = 32M
query_cache_size = 128M
query-cache-size = 128M
## - query cache
## -------------
@@ -4012,7 +4012,7 @@ query_cache_size = 128M
## -
## - Vorgabewert ist 0 oder OFF
## -
slow_query_log = 1
slow-query-log = 1
## - long_query_time
@@ -4027,7 +4027,7 @@ slow_query_log = 1
## -
## - Vorgabewert ist 10
## -
long_query_time = 1
long-query-time = 1
## - slow_query_log_file
@@ -4036,7 +4036,7 @@ long_query_time = 1
## -
## - Vorgabewert ist <host-name>-slow.log
## -
slow_query_log_file = $_mysql_slow_query_log
slow-query-log-file = $_mysql_slow_query_log
## - log-queries-not-using-indexes
@@ -4046,8 +4046,8 @@ slow_query_log_file = $_mysql_slow_query_log
## -
## - Vorgabewert ist 0
## -
#log_queries_not_using_indexes = 1
log_queries_not_using_indexes = 0
#log-queries-not-using-indexes = 1
log-queries-not-using-indexes = 0
## - slow queries
## --------------
@@ -4068,7 +4068,7 @@ log_queries_not_using_indexes = 0
## -
## - Vorgabewert ist 128K
## -
#join_buffer_size = 384K
#join-buffer-size = 384K
@@ -4082,7 +4082,7 @@ log_queries_not_using_indexes = 0
## -
## - Vorgabewert ist 16Mbyte
## -
#max_heap_table_size = 96M
#max-heap-table-size = 96M
## - tmp_table_size
@@ -4098,7 +4098,7 @@ log_queries_not_using_indexes = 0
## - Note:
## - Effective in-memory tmp_table_size is limited to max_heap_table_size.
## -
#tmp_table_size = 96M
#tmp-table-size = 96M
## - angepasste Einstellungen
@@ -4107,7 +4107,7 @@ log_queries_not_using_indexes = 0
[mysqldump]
quick
max_allowed_packet = 32M
max-allowed-packet = 32M
[mysql]
no-auto-rehash
@@ -4116,10 +4116,10 @@ no-auto-rehash
local-infile = 1
[myisamchk]
key_buffer_size = 256M
sort_buffer_size = 256M
read_buffer = 2M
write_buffer = 2M
key-buffer-size = 256M
sort-buffer-size = 256M
read-buffer = 2M
write-buffer = 2M
## ------------------------------------------
@@ -4140,7 +4140,7 @@ write_buffer = 2M
## -
## -
## - Vorgabewert ist 4
#ft_min_word_len = 3
#ft-min-word-len = 3
## - angepasste Einstellungen
## ------------------------------------------
@@ -4150,7 +4150,7 @@ write_buffer = 2M
interactive-timeout
## - sql-mode
## - sql_mode
## -
## - To be compartible with older programming on mysql 5.6
## -