Advertisement
Guest User

Untitled

a guest
Jul 7th, 2011
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. [mysqld]
  2. skip-name-resolve
  3. datadir=/var/lib/mysql
  4. socket=/tmp/mysql.sock
  5. log-error=/var/log/mysqld.log
  6. old_passwords=0
  7. max_connections = 1000
  8. table_cache = 1024
  9. max_allowed_packet = 16M
  10. sort_buffer_size = 2M
  11. thread_cache = 8
  12. thread_concurrency = 32
  13. query_cache_size = 128M
  14. #query_cache_type = 0
  15. default-storage-engine = innodb
  16. transaction_isolation = REPEATABLE-READ
  17. tmp_table_size = 512M
  18. max_heap_table_size = 512M
  19. long_query_time = 1
  20. log-slow-queries = /var/log/mysqlslow.log
  21. innodb_additional_mem_pool_size=48M
  22. innodb_flush_log_at_trx_commit=2
  23. innodb_log_buffer_size=32M
  24. innodb_autoinc_lock_mode=2
  25. innodb_io_capacity=500
  26. innodb_read_io_threads=16
  27. innodb_write_io_threads=8
  28. innodb_buffer_pool_size = 8000M
  29. innodb_lock_wait_timeout = 300
  30. innodb_max_dirty_pages_pct = 90
  31. innodb_thread_concurrency =32
  32.  
  33.  
  34. [mysqldump]
  35. quick
  36. single-transaction
  37.  
  38. [mysqld_safe]
  39. log-error=/var/log/mysqld.log
  40. pid-file=/var/run/mysqld/mysqld.pid
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement