Advertisement
Guest User

Untitled

a guest
Jan 11th, 2023
679
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. # For advice on how to change settings please see
  2. # http://dev.mysql.com/doc/refman/5.6/en/server-configuration-defaults.html
  3.  
  4. [mysqld]
  5.  
  6. # Remove leading # and set to the amount of RAM for the most important data
  7. # cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
  8. # innodb_buffer_pool_size = 128M
  9.  
  10. # Remove leading # to turn on a very important data integrity option: logging
  11. # changes to the binary log between backups.
  12. # log_bin
  13.  
  14. # These are commonly set, remove the # and set as required.
  15. # basedir = .....
  16. # datadir = .....
  17. # port = .....
  18. # server_id = .....
  19. # socket = .....
  20.  
  21. # Remove leading # to set options mainly useful for reporting servers.
  22. # The server defaults are faster for transactions and fast SELECTs.
  23. # Adjust sizes as needed, experiment to find the optimal values.
  24. # join_buffer_size = 128M
  25. # sort_buffer_size = 2M
  26. # read_rnd_buffer_size = 2M
  27.  
  28. sql_mode=NO_ENGINE_SUBSTITUTION
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement