Skip to content

Commit

Permalink
Update default MySQL parameters
Browse files Browse the repository at this point in the history
(Some of these are unnecessary in MySQL 5.7)
  • Loading branch information
dstillman committed Feb 22, 2018
1 parent 08a9288 commit b246748
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions misc/mysql_parameters
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
universal:

character_set_database = utf8
character_set_server = utf8
collation_server = utf8_general_ci
event_scheduler = ON
character_set_database = utf8mb4
character_set_server = utf8mb4
collation_server = utf8mb4_unicode_ci
innodb_flush_log_at_trx_commit = 1
innodb_file_format = Barracuda
innodb_large_prefix = 1
log_bin_trust_function_creators = 1
max_allowed_packet = 33554432
max_connect_errors = 10000
sql_mode = STRICT_ALL_TABLES
skip_name_resolve = 1
sync_binlog = 0
#wait_timeout = 300

master:

event_scheduler = ON
max_allowed_packet = 134217728
table_open_cache = 128
wait_timeout = 1800
Expand Down

0 comments on commit b246748

Please sign in to comment.