Admin manual: Fix typo in MySQL/MariaDB properties

- Change dashes to underscores in the property names. Verified the names
  via the following documentation pages:
  - MySQL: https://dev.mysql.com/doc/refman/8.0/en/server-option-variable-reference.html
  - MariaDB: https://mariadb.com/kb/en/server-system-variables/

Signed-off-by: Simon Westersund <swestersund@users.noreply.github.com>
This commit is contained in:
Simon Westersund
2020-10-30 15:05:19 +02:00
parent d0a2340c51
commit f08de1c7b0

View File

@ -70,8 +70,8 @@ Your :file:`/etc/mysql/my.cnf` could look like this:
query_cache_size = 64M query_cache_size = 64M
tmp_table_size= 64M tmp_table_size= 64M
max_heap_table_size= 64M max_heap_table_size= 64M
slow-query-log = 1 slow_query_log = 1
slow-query-log-file = /var/log/mysql/slow.log slow_query_log_file = /var/log/mysql/slow.log
long_query_time = 1 long_query_time = 1
[client-server] [client-server]
@ -82,8 +82,8 @@ Your :file:`/etc/mysql/my.cnf` could look like this:
default-character-set = utf8mb4 default-character-set = utf8mb4
[mysqld] [mysqld]
character-set-server = utf8mb4 character_set_server = utf8mb4
collation-server = utf8mb4_general_ci collation_server = utf8mb4_general_ci
transaction_isolation = READ-COMMITTED transaction_isolation = READ-COMMITTED
binlog_format = ROW binlog_format = ROW
innodb_large_prefix=on innodb_large_prefix=on