Guest User

MySQL

a guest
May 24th, 2012
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. [mysqld]
  2. skip_external_locking
  3. skip_slave_start
  4.  
  5. key_buffer = 16M
  6. max_allowed_packet = 16M
  7. thread_stack = 192K
  8. thread_cache_size = 8
  9.  
  10. myisam-recover = BACKUP
  11. #max_connections = 500
  12. #table_cache = 64
  13. #thread_concurrency = 10
  14.  
  15. query_cache_type = 1
  16. query_cache_limit = 1M
  17. query_cache_size = 32M
  18. max_write_lock_count = 1
  19.  
  20. #general_log_file = /var/log/mysql/mysql.log
  21. #general_log = 1
  22.  
  23. #log_slow_queries = /var/log/mysql/mysql-slow.log
  24. #long_query_time = 2
  25. #log-queries-not-using-indexes
  26.  
  27. #server-id = 1
  28. #log_bin = /var/log/mysql/mysql-bin.log
  29. expire_logs_days = 10
  30. max_binlog_size = 100M
  31. #binlog_do_db = include_database_name
  32. #binlog_ignore_db = include_database_name
  33.  
  34. [mysqldump]
  35. quick
  36. quote-names
  37. max_allowed_packet = 16M
  38.  
  39. [mysql]
  40. #no-auto-rehash # faster start of mysql but no tab completition
  41.  
  42. [isamchk]
  43. key_buffer = 16M
Advertisement
Add Comment
Please, Sign In to add comment