]> git.pld-linux.org Git - packages/percona-server.git/blob - mysqld.conf
- rel 2; disable implicit-fallthrough because code is not ready for it
[packages/percona-server.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/percona-server/mysqld.log
127 log-warnings = 2
128
129 # Log slow queries
130 slow-query-log
131 slow-query-log-file = /var/log/percona-server/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/percona-server/query.log
136
137 # Log all updates.
138 #log-update = /var/log/percona-server/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 #back_log=5
154 #connect_timeout=5
155 #delayed_insert_timeout=300
156 #delayed_insert_limit=100
157 #flush_time=0
158 #join_buffer_size=131072
159 #key_buffer_size=8M
160 #read_rnd_buffer_size=256K
161 #read_buffer_size=132K
162 #long_query_time=10
163 #max_allowed_packet=1M
164 #max_connections=100
165 #max_user_connections=0
166 #max_connect_errors=10
167 #max_delayed_threads=20
168 #delayed_queue_size=1000
169 #max_join_size=4294967295
170 #max_sort_length=1024
171 #max_write_lock_count=4294967295
172 #net_buffer_length=16384
173 #record_buffer=131072
174 #sort_buffer_size=2M
175 #table_cache=64
176 #tmp_table_size=1M
177 #max_heap_table_size=32M
178 #thread_cache_size=16
179 #thread_stack=65536
180 # http://www.mysqlperformanceblog.com/2012/06/04/thread_concurrency-doesnt-do-what-you-expect/
181 # thread_concurrency is deprecated, removed in 5.6.1 and works on old Solaris versions < 9
182 #wait_timeout=28800
183 #query_cache_size=8M
184 #query_cache_limit=1M
185
186 # Fulltext search options
187 #ft_min_word_len=2
188
189 #
190 # MyISAM tables options
191 #
192
193 # Don't flush key buffers between writes for any MyISAM
194 # set this if you have dedicated slave server where writes aren't important
195 #delay-key-write-for-all-tables
196
197 # Repair automatically on open if the table wasn't closed properly.
198 # http://dev.mysql.com/doc/refman/5.6/en/server-options.html#option_mysqld_myisam-recover-options
199 myisam-recover-options
200 #
201 #myisam_sort_buffer_size=4M
202
203
204 # To completely disable InnoDB, use this option
205 # this makes all innodb options being unknown options (including skip-innodb)
206 # @deprecated
207 #ignore-builtin-innodb
208
209 #
210 # InnoDB tables options (see MySQL manual)
211 #
212 #skip-innodb
213
214 # http://stackoverflow.com/questions/2646373/mysql-data-file-wont-shrink
215 # http://dev.mysql.com/doc/refman/5.5/en/innodb-multiple-tablespaces.html
216 innodb_file_per_table
217
218 # these are actual defaults (as of 5.0.26)
219 innodb_data_home_dir = @clusterdir@/mysqldb/db
220 innodb_data_file_path = ibdata1:10M:autoextend
221 innodb_log_group_home_dir = @clusterdir@/mysqldb/db
222 innodb_log_files_in_group=2
223 innodb_log_file_size=5M
224 innodb_log_buffer_size=1M
225
226 #innodb_flush_log_at_trx_commit=1
227 #innodb_log_arch_dir = @clusterdir@/innodb/log
228 #innodb_log_archive=0
229 #innodb_buffer_pool_size=80M
230 #innodb_additional_mem_pool_size=10M
231 #innodb_file_io_threads=4
232 #innodb_lock_wait_timeout=50
233
234 # used for logs rotation or status check for replications
235 [client]
236 user        = mysql_sysadmin
237 password    =
This page took 0.378478 seconds and 3 git commands to generate.