1
2
3
|
[root@zhu2
~] #
/opt/mysql/libexec/mysqld --verbose --help Default
options are read from
the following files in the
given order: /etc/my .cnf /etc/mysql/my .cnf /opt/mysql/etc/my .cnf
~/.my.cnf |
1
|
port
= 3306 |
1
|
socket
= /tmp/mysql .sock |
1
|
back_log
= 300 |
1
|
skip-networking |
1
|
skip-locking |
1
|
skip-name-resolve |
1
|
max_connections
= 3000 |
1
|
max_connect_errors
= 1000 |
1
|
table_cache
= 614k |
1
|
max_allowed_packet
= 4M |
1
|
sort_buffer_size
= 16M |
1
|
join_buffer_size
8M |
1
|
thread_cache_size
= 64 |
1
|
query_cache_size
= 64M |
1
|
query_cache_limit
= 4M |
1
|
tmp_table_size
256M |
1
|
default_storage_engine
= MYISAM |
1
|
log-bin=mysql-bin |
1
|
key_buffer_size
= 384M |
1
|
read_buffer_size
= 8M |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
[client] default-character- set =
utf8 port
= 3306 socket
= /tmp/mysql .sock [mysqld] user
= mysql port
= 3306 socket
= /tmp/mysql .sock basedir
= /opt/mysql datadir
= /opt/mysql/var log-error
= /opt/mysql/var/mysql-error .log pid- file = /opt/mysql/var/mysql .pid log_slave_updates
= 1 log-bin
= /opt/mysql/var/mysql-bin binlog_format
= mixed binlog_cache_size
= 4M max_binlog_cache_size
= 8M max_binlog_size
= 1G expire_logs_days
= 90 key_buffer_size
= 384M sort_buffer_size
= 2M read_buffer_size
= 2M read_rnd_buffer_size
= 16M join_buffer_size
= 2M thread_cache_size
= 8 query_cache_size
= 32M query_cache_limit
= 2M query_cache_min_res_unit
= 2k thread_concurrency
= 32 table_cache
= 614 table_open_cache
= 512 open_files_limit
= 10240 back_log
= 600 max_connections
= 5000 max_connect_errors
= 6000 external-locking
= FALSE max_allowed_packet
= 16M default-storage-engine
= MYISAM thread_stack
= 192k transaction_isolation
= READ-COMMITTED tmp_table_size
= 256M max_heap_table_size
= 512M bulk_insert_buffer_size
= 64M myisam_sort_buffer_size
= 64M myisam_max_sort_file_size
= 10G myisam_repair_threads
= 1 myisam_recover long_query_time
= 2 slow_query_log slow_query_log_file
= /opt/mysql/var/slow .log skip-name-resolve skip-locking skip-networking innodb_additional_mem_pool_size
= 16M innodb_buffer_pool_size
= 512M innodb_data_file_path
= ibdata1:256M:autoextend innodb_file_io_threads
= 4 innodb_thread_aoncurrency
= 8 innodb_flush_log_at_trx_commit
= 2 innodb_log_buffer_size
= 16M innodb_log_file_size
= 128M innodb_log_files_in_group
= 3 innodb_max_dirty_pages_pct
= 90 innodb_lock_wait_timeout
= 120 innodb_file_per_table
= 0 [mysqldump] quick max_allow_packet
= 64M [mysql] no-auto-rehash safr-updates [myisamchk] key_buffer_size
= 256M sort_buffer_size
= 256M read_buffer
= 2M [mysqldump] quick max_allow_packet
= 64M [mysql] no-auto-rehash safe-updates [myisamchk] key_buffer_size
= 256M sort_buffer_size
= 256M read_buffer
= 2M write_buffer
= 2M [mysqlhotcopy] interactive-timeout |