diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2015-07-19 14:19:23 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-07-19 14:19:27 +0200 |
commit | 262952e50d13b1cb533dd337cd6d0b726b297b4e (patch) | |
tree | ff741ee8f7690bf9f4d1d00dcc87f86620687126 | |
parent | 688c1e4ba0c055d62c615bf058976167aed80126 (diff) |
Use full name rather than prefix for MySQL option 'key_buffer_size'.
[Warning] Using unique option prefix key_buffer instead of
key_buffer_size is deprecated and will be removed in a future release.
Please use the full name instead.
-rw-r--r-- | roles/common-SQL/files/etc/mysql/my.cnf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/common-SQL/files/etc/mysql/my.cnf b/roles/common-SQL/files/etc/mysql/my.cnf index 0d6aa8a..909236d 100644 --- a/roles/common-SQL/files/etc/mysql/my.cnf +++ b/roles/common-SQL/files/etc/mysql/my.cnf @@ -52,7 +52,7 @@ skip-networking # # * Fine Tuning # -key_buffer = 16M +key_buffer_size = 16M max_allowed_packet = 16M thread_stack = 192K thread_cache_size = 8 @@ -120,7 +120,7 @@ max_allowed_packet = 16M #no-auto-rehash # faster start of mysql but no tab completition [isamchk] -key_buffer = 16M +key_buffer_size = 16M # # * IMPORTANT: Additional settings that can override those from this file! |