my.cnf.hbs 666 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. [mysqld]
  2. {{#unless os.windows}}
  3. skip-name-resolve
  4. {{/unless}}
  5. {{#if disableMysqlx}}
  6. mysqlx = 0
  7. {{/if}}
  8. datadir = {{datadir}}
  9. port = {{port}}
  10. bind-address = {{bindAddress}}
  11. socket = {{socket}}
  12. {{#if os.windows}}
  13. console
  14. {{/if}}
  15. # Older PHP/client compatibility
  16. character-set-server = utf8mb3
  17. default_authentication_plugin = mysql_native_password
  18. # Fine Tuning
  19. performance_schema = off
  20. max_allowed_packet = 16M
  21. thread_stack = 192K
  22. thread_cache_size = 8
  23. # InnoDB
  24. innodb_buffer_pool_size = 32M
  25. innodb_log_file_size = 96M
  26. [client]
  27. {{#unless os.windows}}
  28. socket = {{socket}}
  29. {{else}}
  30. host = {{clientAddress}}
  31. port = {{port}}
  32. {{/unless}}
  33. user = root
  34. password = root