Advertisement
Guest User

my.cnf

a guest
Nov 25th, 2022
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. [mysqld]
  2. skip-external-locking
  3. symbolic-links=0
  4. character-set-server=utf8
  5. collation-server=utf8_general_ci
  6. default-storage-engine=MyISAM
  7. default-time-zone=+07:00
  8. sql-mode="STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_AUTO_VALUE_ON_ZERO,NO_ENGINE_SUBSTITUTION"
  9. key_buffer_size=256M
  10. max_allowed_packet=1M
  11. table_open_cache=256
  12. sort_buffer_size=256K
  13. read_buffer_size=128K
  14. read_rnd_buffer_size=4M
  15. myisam_sort_buffer_size=64M
  16. thread_cache_size=8
  17. query_cache_size=32M
  18. thread_concurrency=8
  19. net_buffer_length=16K
  20. thread_stack=240K
  21. binlog_format=mixed
  22. innodb_buffer_pool_size=256M
  23. innodb_additional_mem_pool_size=20M
  24. innodb_log_file_size=64M
  25. innodb_log_buffer_size=8M
  26. innodb_flush_log_at_trx_commit=1
  27. innodb_lock_wait_timeout=50
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement