hx851112 发表于 2017-8-23 21:15:24

求救my.cnf文件的配置信息!

由于本人疏忽用远程软件编辑了my.cnf信息但是却没上传至服务器,而导致my.cnf文件内的信息丢失成为空文件,希望可以有哪个朋友可以提供一下my.cnf文件的配置信息.

licess 发表于 2017-8-24 09:01:41

mysql版本不同、机器配置不同的话配置文件参数也不一样
一下为mysq 5.5,开启innodb,数据库目录自行替换

#password        = your_password
port                = 3306
socket                = /tmp/mysql.sock


port                = 3306
socket                = /tmp/mysql.sock
datadir = 数据库目录
skip-external-locking
key_buffer_size = 16M
max_allowed_packet = 1M
table_open_cache = 64
sort_buffer_size = 512K
net_buffer_length = 8K
read_buffer_size = 256K
read_rnd_buffer_size = 512K
myisam_sort_buffer_size = 8M
thread_cache_size = 8
query_cache_size = 8M
tmp_table_size = 16M

#skip-networking
max_connections = 500
max_connect_errors = 100
open_files_limit = 65535

log-bin=mysql-bin
binlog_format=mixed
server-id        = 1
expire_logs_days = 10

default_storage_engine = InnoDB
innodb_file_per_table = 1
innodb_data_home_dir = 数据库目录
innodb_data_file_path = ibdata1:10M:autoextend
innodb_log_group_home_dir = 数据库目录
innodb_buffer_pool_size = 16M
innodb_additional_mem_pool_size = 2M
innodb_log_file_size = 5M
innodb_log_buffer_size = 8M
innodb_flush_log_at_trx_commit = 1
innodb_lock_wait_timeout = 50


quick
max_allowed_packet = 16M


no-auto-rehash


key_buffer_size = 20M
sort_buffer_size = 20M
read_buffer = 2M
write_buffer = 2M


interactive-timeout

hx851112 发表于 2017-8-24 16:34:25

感谢军哥~通过以上配置信息已经修复问题~
页: [1]
查看完整版本: 求救my.cnf文件的配置信息!