You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
420 B
19 lines
420 B
[client] |
|
# 设置mysql客户端默认字符集 |
|
default-character-set = utf8 |
|
|
|
[mysqld] |
|
# 跨库多表连接查询 |
|
federated = 1 |
|
# 设置3306端口 |
|
port = 3306 |
|
# 允许最大连接数 |
|
max_connections = 2000 |
|
# 创建新表时将使用的默认存储引擎 |
|
default-storage-engine = INNODB |
|
lower_case_table_names = 1 |
|
# 禁止域名解析 |
|
skip-name-resolve = 1 |
|
log_error = /var/log/mysql/error.log |
|
max_allowed_packet = 1024M |
|
|
|
|