michael@527: ## michael@527: ## my.cnf -- MySQL configuration michael@527: ## michael@527: michael@527: [client] michael@527: michael@527: socket = @l_prefix@/var/mysql/mysql.sock michael@527: port = 3306 michael@527: michael@527: [mysqld] michael@527: michael@527: bind-address = 127.0.0.1 michael@527: port = 3306 michael@527: #skip-networking michael@527: michael@527: tmpdir = @l_prefix@/var/mysql/tmp michael@527: log = @l_prefix@/var/mysql/common.log michael@527: #log-bin = @l_prefix@/var/mysql/binary.log michael@527: #server-id = 1 michael@527: michael@527: key_buffer_size = 64M michael@527: table_cache = 256 michael@527: join_buffer_size = 1M michael@527: max_connections = 1000 michael@527: max_connect_errors = 10 michael@527: max_delayed_threads = 20 michael@527: max_heap_table_size = 16777216 michael@527: max_sort_length = 1024 michael@527: max_user_connections = 1000 michael@698: read_buffer_size = 131072 michael@527: sort_buffer = 4M michael@527: key_buffer = 1M michael@527: tmp_table_size = 32M michael@527: query_cache_type = 1 michael@527: query_cache_limit = 1M michael@527: query_cache_size = 32M michael@527: ft_min_word_len = 3 michael@527: michael@527: michael@527: innodb_buffer_pool_size = 70M michael@527: innodb_additional_mem_pool_size = 2M michael@527: innodb_log_files_in_group = 3 michael@527: innodb_log_file_size = 20M michael@527: innodb_log_buffer_size = 8M michael@527: innodb_lock_wait_timeout = 50 michael@527: michael@527: michael@527: [mysqld_safe] michael@527: michael@527: datadir = @l_prefix@/var/mysql michael@527: socket = @l_prefix@/var/mysql/mysql.sock michael@527: pid_file = @l_prefix@/var/mysql/mysqld.pid michael@527: user = @l_rusr@ michael@527: basedir = @l_prefix@ michael@527: