KevinDundee

MyIni

Nov 17th, 2017
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. # For advice on how to change settings please see
  2. # http://dev.mysql.com/doc/refman/5.7/en/server-configuration-defaults.html
  3. # *** DO NOT EDIT THIS FILE. It's a template which will be copied to the
  4. # *** default location during install, and will be replaced if you
  5. # *** upgrade to a newer version of MySQL.
  6.  
  7.  
  8. # Remove leading # and set to the amount of RAM for the most important data
  9. # cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
  10. # innodb_buffer_pool_size = 128M
  11.  
  12. # Remove leading # to turn on a very important data integrity option: logging
  13. # changes to the binary log between backups.
  14. # log_bin
  15.  
  16. # These are commonly set, remove the # and set as required.
  17. # basedir = .....
  18. # datadir = C:/MySQLExports/
  19. # port = .....
  20. # server_id = .....
  21.  
  22.  
  23. # Remove leading # to set options mainly useful for reporting servers.
  24. # The server defaults are faster for transactions and fast SELECTs.
  25. # Adjust sizes as needed, experiment to find the optimal values.
  26. # join_buffer_size = 128M
  27. # sort_buffer_size = 2M
  28. # read_rnd_buffer_size = 2M
  29.  
  30.  
  31.  
  32. [mysqld_safe]
  33. #log_error = /var/log/mysql/mysql_error.log
  34.  
  35. [mysqld]
  36. sql_mode=''
  37. default-time-zone = "+00:00"
  38.  
  39. innodb_flush_log_at_trx_commit=2
  40. ; sync_binlog=1
  41. secure_file_priv = ""
  42. # datadir = 'C:/MySQLExports/'
  43. #log_error = /var/log/mysql/mysql_error.log
  44.  
  45. #general_log_file = /var/log/mysql/mysql.log
  46. #general_log = 1
  47.  
  48. ; slow-query-log=1
  49. # log_slow_queries = 1
  50. #log_slow_queries = /var/log/mysql/mysql-slow.log
  51. #long_query_time = 2
  52. #log-queries-not-using-indexes
  53.  
  54.  
  55. #group_concat_max_len = 18446744073709551615
  56. group_concat_max_len = 1000000
  57.  
  58. innodb_adaptive_hash_index=0
  59. max_allowed_packet=256M
  60. ; innodb_buffer_pool_size = 256000M
  61. innodb_read_io_threads = 64
  62. innodb_write_io_threads = 16
  63. innodb_log_buffer_size = 256M
  64. query_cache_size = 0
  65. innodb_buffer_pool_dump_at_shutdown=1
  66. innodb_buffer_pool_load_at_startup=1
  67. innodb_purge_threads = 4
Add Comment
Please, Sign In to add comment