Skip to content

Instantly share code, notes, and snippets.

@dekart
Created April 18, 2013 08:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dekart/5411303 to your computer and use it in GitHub Desktop.
Save dekart/5411303 to your computer and use it in GitHub Desktop.
[mysql]
# CLIENT #
port = 3306
socket = /var/lib/mysql/mysql.sock
[mysqld]
# GENERAL #
user = mysql
default_storage_engine = InnoDB
socket = /var/lib/mysql/mysql.sock
pid_file = /var/lib/mysql/mysql.pid
# MyISAM #
key_buffer_size = 32M
myisam_recover = FORCE,BACKUP
# SAFETY #
max_allowed_packet = 16M
max_connect_errors = 1000000
skip_name_resolve
innodb = FORCE
# DATA STORAGE #
datadir = /var/lib/mysql/
# BINARY LOGGING #
log_bin = /var/lib/mysql/mysql-bin
expire_logs_days = 7
sync_binlog = 0
max_binlog_size = 100M
# CACHES AND LIMITS #
tmp_table_size = 32M
max_heap_table_size = 32M
#query_cache_type = 1
#query_cache_size = 1024MB
query_cache_type = 0
max_connections = 500
thread_cache_size = 50
open_files_limit = 65535
table_definition_cache = 4096
table_open_cache = 4096
# INNODB #
innodb_flush_method = O_DIRECT
innodb_log_files_in_group = 2
innodb_log_file_size = 5M
innodb_flush_log_at_trx_commit = 2
innodb_file_per_table = 1
innodb_buffer_pool_size = 10G
# LOGGING #
log_error = /var/log/mysql/mysql-error.log
log_queries_not_using_indexes = 0
slow_query_log = 0
long_query_time = 0.3
slow_query_log_file = /var/log/mysql/mysql-slow.log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment