]> TLD Linux GIT Repositories - packages/mysql.git/blob - mysqld.conf
- updated to 5.6.17-66.0
[packages/mysql.git] / mysqld.conf
1 # The MySQL server configuration file.
2 # vim:ft=mycnf
3 #
4 # One can use all long options that the mysqld supports.
5 # Run mysqld with --help to get a whole list of available options
6
7 # This section must be the first!
8 [mysqld]
9 datadir     = @clusterdir@/mysqldb/db
10 pid-file    = @clusterdir@/mysqldb/mysql.pid
11 socket      = @clusterdir@/mysqldb/mysql.sock
12 port        = 3306
13 user        = mysql
14
15 # ssl options
16 #ssl-ca = /etc/ssl/certs/mysql/ca-cert.pem
17 #ssl-cert = /etc/ssl/certs/mysql/server-cert.pem
18 #ssl-key = /etc/ssl/certs/mysql/server-key.pem
19 #ssl-cipher = DHE-RSA-AES256-SHA
20
21 #character-set-server=latin2
22 #collation-server=latin2_general_ci
23 #skip-character-set-client-handshake
24
25 # Use passwords compatible with old 4.0 mysqld
26 #old-passwords
27
28 # Don't use system locking
29 skip-external-locking
30
31 # Disabling symbolic-links is recommended to prevent assorted security risks
32 symbolic-links=0
33
34 # Default storage engine is InnoDB since 5.5.5
35 # You may revert to previous behaviour by specifiying MyISAM here
36 #default-storage-engine=InnoDB
37
38 # Don't listen on a TCP/IP port at all. This is a security enhancement,
39 # if all processes that need to connect to mysqld run on the same host.
40 # All interaction with mysqld must be made via Unix sockets.
41 skip-networking
42
43 # IP address to bind to
44 #bind-address=127.0.0.1
45
46 # no dns
47 #skip-name-resolve
48
49 # Emergency option. Use only if you really need this.
50 #skip-grant-tables
51
52 # http://dev.mysql.com/doc/refman/5.5/en/server-options.html#option_mysqld_default-storage-engine
53 #default-storage-engine=MyISAM
54
55 # Replication Master Server (default)
56 # binary logging is required for replication
57 #log-bin=mysql-bin
58
59 # max size of master binlog files
60 #max_binlog_size=256M
61
62 # If non-zero, binary logs will be purged after expire_logs_days days; possible
63 # purges happen at startup and at binary log rotation.
64 #expire-logs-days=30
65
66 # Normally, a slave does not log to its own binary log any updates that are
67 # received from a master server. This option tells the slave to log the updates
68 # performed by its SQL thread to its own binary log. For this option to have
69 # any effect, the slave must also be started with the --log-bin option to
70 # enable binary logging. --log-slave-updates is used when you want to chain
71 # replication servers.
72 #log-slave-updates
73
74 # required unique id between 1 and 2^32 - 1
75 # defaults to 1 if master-host is not set but will not function as a master if omitted
76 #server-id=2
77
78 # To set up N master servers, set the variables like this:
79 # Set auto_increment_increment to N on each master.
80 # Set each of the N masters to have a different auto_increment_offset, using the values 1, 2, ..., N
81 #auto-increment-offset=1
82 #auto-increment-increment=2
83
84 # databases to be included in binlog
85 #binlog-do-db=db1
86 # or excluded
87 #binlog-ignore-db=mysql
88 #binlog-ignore-db=test
89
90 # slave setup
91 #relay-log=slave-relay-bin
92 #report-host=db-slave.example.org
93
94 # skip startup of slave
95 #skip-slave-start
96
97 # master does not ignore them, but we do
98 #replicate-ignore-db=mysql
99 #replicate-ignore-db=test
100 #replicate-ignore-table=db1.tbl1
101 #replicate-ignore-table=db2.tbl2
102
103 #replicate-rewrite-db=delfi->delfi_ro
104
105 # replication local log
106 #max_relay_log_size=256M
107
108 # https://dev.mysql.com/doc/refman/5.6/en/log-destinations.html
109 # global option where logs be written
110 # affects slow-query-log, general-log direcives
111 # Possible values: FILE, TABLE
112 # NOTE: when using table, you can switch to MyISAM, but the contents is still
113 # not replicated, also mysqldump will not dump data, only create table
114 # statements
115 #log-output = TABLE
116 log-output = FILE
117
118 # mysqld error log (stderr)
119 log-error = /var/log/mysql/mysqld.log
120 log-warnings = 2
121
122 # Log slow queries
123 slow-query-log
124 slow-query-log_file = /var/log/mysql/slow.log
125
126 # Log connections and queries. It slows down MySQL so it's disabled by default
127 #general-log
128 #general-log-file = /var/log/mysql/query.log
129
130 # Log all updates.
131 #log-update = /var/log/mysql/update
132 # Log some extra information to update log
133 #log-long-format
134
135 # Language
136 #lc-messages = pl_PL
137
138 # Path for temporary files. Several paths may be specified, separated by a
139 # colon (:), in this case they are used in a round-robin fashion.
140 #tmpdir      = /var/tmp
141
142 #
143 # Internal server variables
144 #
145
146 explicit_defaults_for_timestamp = true
147 #back_log=5
148 #connect_timeout=5
149 #delayed_insert_timeout=300
150 #delayed_insert_limit=100
151 #flush_time=0
152 #join_buffer_size=131072
153 #key_buffer_size=8M
154 #read_rnd_buffer_size=256K
155 #read_buffer_size=132K
156 #long_query_time=10
157 #max_allowed_packet=1M
158 #max_connections=100
159 #max_user_connections=0
160 #max_connect_errors=10
161 #max_delayed_threads=20
162 #delayed_queue_size=1000
163 #max_join_size=4294967295
164 #max_sort_length=1024
165 #max_write_lock_count=4294967295
166 #net_buffer_length=16384
167 #record_buffer=131072
168 #sort_buffer_size=2M
169 #table_cache=64
170 #tmp_table_size=1M
171 #max_heap_table_size=32M
172 #thread_cache_size=16
173 #thread_stack=65536
174 # Try number of CPU's*2
175 #thread_concurrency=8
176 #wait_timeout=28800
177 #query_cache_size=8M
178 #query_cache_limit=1M
179
180 # Fulltext search options
181 #ft_min_word_len=2
182
183 # Turn off nonstandard TIMESTAMP behaviors
184 # http://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html#sysvar_explicit_defaults_for_timestamp
185 explicit_defaults_for_timestamp = true
186
187 #
188 # MyISAM tables options
189 #
190
191 # Don't flush key buffers between writes for any MyISAM
192 # set this if you have dedicated slave server where writes aren't important
193 #delay-key-write-for-all-tables
194
195 # Repair automatically on open if the table wasn't closed properly.
196 myisam-recover
197 #
198 #myisam_sort_buffer_size=4M
199
200
201 # To completely disable InnoDB, use this option
202 # this makes all innodb options being unknown options (including skip-innodb)
203 # @deprecated
204 #ignore-builtin-innodb
205
206 #
207 # InnoDB tables options (see MySQL manual)
208 #
209 #skip-innodb
210
211 # http://stackoverflow.com/questions/2646373/mysql-data-file-wont-shrink
212 # http://dev.mysql.com/doc/refman/5.5/en/innodb-multiple-tablespaces.html
213 innodb_file_per_table
214
215 # these are actual defaults (as of 5.0.26)
216 innodb_data_home_dir = @clusterdir@/mysqldb/db
217 innodb_data_file_path = ibdata1:10M:autoextend
218 innodb_mirrored_log_groups=1
219 innodb_log_group_home_dir = @clusterdir@/mysqldb/db
220 innodb_log_files_in_group=2
221 innodb_log_file_size=5M
222 innodb_log_buffer_size=1M
223
224 #innodb_flush_log_at_trx_commit=1
225 #innodb_log_arch_dir = @clusterdir@/innodb/log
226 #innodb_log_archive=0
227 #innodb_buffer_pool_size=80M
228 #innodb_additional_mem_pool_size=10M
229 #innodb_file_io_threads=4
230 #innodb_lock_wait_timeout=50
231
232 # used for logs rotation
233 [mysqladmin]
234 user        = mysql_sysadmin
235 password    =
236
237 # used by initscript to fetch slave status
238 [mysql]
239 user        = mysql
240 password    =