Advertisement
DDeathlonger

MySQL my.ini

Jun 24th, 2019
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 1.80 KB | None | 0 0
  1. [client]
  2. socket=MYSQL
  3. port=3306
  4.  
  5. [mysql]
  6. no-beep
  7.  
  8. [mysqld]
  9. enable-named-pipe
  10. shared-memory
  11. shared-memory-base-name=MYSQL
  12. socket=MYSQL
  13. port=3306
  14.  
  15. datadir=C:/ProgramData/MySQL/MySQL Server 8.0/Data
  16. default_authentication_plugin=mysql_native_password
  17. default-storage-engine=INNODB
  18. sql-mode="STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION,TRADITIONAL,ERROR_FOR_DIVISION_BY_ZERO,STRICT_ALL_TABLES"
  19. default-time-zone='-7:00'
  20.  
  21. log-output=FILE
  22. general-log=1
  23. general_log_file="DANTE-PC.log"
  24. slow-query-log=1
  25. slow_query_log_file="DANTE-PC-slow.log"
  26. long_query_time=1
  27. log-error="DANTE-PC.err"
  28. log-bin="DANTE-PC-bin"
  29.  
  30. event_scheduler=OFF
  31.  
  32. server-id=1
  33. report_port=3306
  34. lower_case_table_names=2
  35. secure-file-priv="C:/ProgramData/MySQL/MySQL Server 8.0/Uploads"
  36.  
  37. max_connections=151
  38. table_open_cache=2000
  39. tmp_table_size=47M
  40. thread_cache_size=25
  41. myisam_max_sort_file_size=100G
  42. myisam_sort_buffer_size=84M
  43. key_buffer_size=20M
  44. read_buffer_size=64K
  45. read_rnd_buffer_size=256K
  46.  
  47. innodb_flush_log_at_trx_commit=1
  48.  
  49. innodb_buffer_pool_size=1024M
  50. innodb_buffer_pool_instances=8
  51.  
  52. innodb_log_buffer_size=1M
  53. innodb_log_file_size=48M
  54. innodb_thread_concurrency=4
  55. innodb_autoextend_increment=64
  56. innodb_concurrency_tickets=5000
  57. innodb_old_blocks_time=1000
  58. innodb_open_files=300
  59. innodb_stats_on_metadata=0
  60. innodb_file_per_table=1
  61. innodb_checksum_algorithm=0
  62. back_log=80
  63.  
  64. flush_time=1
  65. mysqlx_interactive_timeout=1
  66. mysqlx_wait_timeout=1
  67. interactive_timeout=1
  68. wait_timeout=1
  69.  
  70. mysqlx_idle_worker_thread_timeout=1
  71.  
  72. lock_wait_timeout=60
  73. rpl_stop_slave_timeout=90
  74.  
  75. join_buffer_size=256K
  76. max_allowed_packet=4M
  77. max_connect_errors=100
  78. open_files_limit=41610
  79. sort_buffer_size=256K
  80. table_definition_cache=1400
  81. binlog_row_event_max_size=8K
  82.  
  83. sync_master_info=10000
  84. sync_relay_log=10000
  85. sync_relay_log_info=10000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement