Advertisement
Guest User

Master config

a guest
Apr 13th, 2013
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 1.14 KB | None | 0 0
  1. [client]
  2. port = 3306
  3. socket = /var/lib/mysqld/mysqld.sock
  4. default-character-set = utf8
  5.  
  6. [mysqld_safe]
  7. socket = /var/lib/mysqld/mysqld.sock
  8. nice = 0
  9.  
  10. [mysqld]
  11. server-id = 1
  12.  
  13. user = mysql
  14. pid-file = /var/run/mysqld/mysqld.pid
  15. socket = /var/lib/mysqld/mysqld.sock
  16. port = 3306
  17. basedir = /usr
  18. datadir = /var/lib/mysql
  19. tmpdir = /tmp
  20. skip-external-locking
  21. query_cache_size = 32M
  22. table_cache = 4096
  23. thread_cache_size = 32
  24. max_heap_table_size     = 32M
  25. tmp_table_size = 32M
  26. innodb_buffer_pool_size = 32M
  27. innodb_log_file_size = 64M
  28. innodb_flush_method = O_DIRECT
  29. transaction-isolation = READ-COMMITTED
  30. default-storage-engine = innodb
  31. bind-address = xxx.xxx.xxx.xxx
  32. key_buffer = 16M
  33. max_allowed_packet = 16M
  34. thread_stack = 128K
  35. myisam-recover = BACKUP
  36. expire_logs_days = 10
  37. max_binlog_size = 100M
  38. join_buffer_size = 2M
  39. sort_buffer_size = 2M
  40. character-set-server = utf8
  41. collation-server = utf8_unicode_ci
  42. init-connect = "SET NAMES utf8 COLLATE utf8_unicode_ci"
  43. skip-character-set-client-handshake
  44. innodb_file_per_table
  45.  
  46. binlog-do-db=bitrix_26
  47. log-bin=mysql-bin
  48. binlog_format = mixed
  49. sync_binlog = 1
  50. innodb_flush_log_at_trx_commit = 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement