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