# @see http://dev.mysql.com/doc/mysql/en/server-system-variables.html # Remember to edit /etc/mysql/debian.cnf when changing the socket location. [client] port = 3306 socket = /var/run/mysqld/mysqld.sock # This was formally known as [safe_mysqld]. Both versions are currently parsed. [mysqld_safe] socket = /var/run/mysqld/mysqld.sock nice = 0 [mysqld] user = mysql pid-file = /var/run/mysqld/mysqld.pid socket = /var/run/mysqld/mysqld.sock port = 3306 basedir = /usr datadir = /var/lib/mysql tmpdir = /tmp lc-messages-dir = /usr/share/mysql skip-external-locking bind-address = 127.0.0.1 max_allowed_packet = 16M thread_stack = 128K thread_cache_size = 8 max_connections = 20 myisam-recover = DEFAULT # table_open_cache was previously known as table_cache in MySQL 5.1.2 and earlier. table_open_cache = 1024 thread_concurrency = 8 max_heap_table_size = 32M tmp_table_size = 32M # key_buffer_size was previously known as key_buffer key_buffer_size = 64M key_cache_division_limit= 70 sort_buffer_size = 16M read_buffer_size = 4M read_rnd_buffer_size = 4M myisam_sort_buffer_size = 4M # Query Cache Configuration query_cache_limit = 1M query_cache_size = 32M query_cache_type = 1 # Error logging goes to syslog. This is a Debian improvement :) # Error logging goes to syslog due to /etc/mysql/conf.d/mysqld_safe_syslog.cnf. # # Here you can see queries with especially long duration log_slow_queries = /var/log/mysql/mysql-slow.log long_query_time = 3 #log-queries-not-using-indexes #it save MANY simple queries, so commented # # The following can be used as easy to replay backup logs or for replication. # note: if you are setting up a replication slave, see README.Debian about # other settings you may need to change. #server-id = 1 #log_bin = /var/log/mysql/mysql-bin.log expire_logs_days = 10 max_binlog_size = 100M #binlog_do_db = include_database_name #binlog_ignore_db = include_database_name # # * InnoDB # # InnoDB is enabled by default with a 10MB datafile in /var/lib/mysql/. # Read the manual for more InnoDB related options. There are many! # # * Security Features # # Read the manual, too, if you want chroot! # chroot = /var/lib/mysql/ # # For generating SSL certificates I recommend the OpenSSL GUI "tinyca". # # ssl-ca=/etc/mysql/cacert.pem # ssl-cert=/etc/mysql/server-cert.pem # ssl-key=/etc/mysql/server-key.pem innodb_buffer_pool_size = 1024M [mysqldump] quick quote-names max_allowed_packet = 16M [mysql] #no-auto-rehash # faster start of mysql but no tab completition [isamchk] key_buffer = 16M # # * IMPORTANT: Additional settings that can override those from this file! # The files must end with '.cnf', otherwise they'll be ignored. # !includedir /etc/mysql/conf.d/