blob: db30e373eef3d2dd92ae40dec1711ca325bd45c1 [file] [log] [blame]
Ales Komarekcba48ac2015-04-30 11:40:44 +02001
OlgaGusarenko43e99902018-07-30 17:18:32 +03002=====
3Usage
4=====
Ales Komarekcba48ac2015-04-30 11:40:44 +02005
OlgaGusarenko43e99902018-07-30 17:18:32 +03006Galera Cluster for MySQL is a true Multimaster Cluster based on synchronous
7replication. Galera Cluster is an easy-to-use, high-availability solution,
8which provides high system uptime, no data loss and scalability for future
9growth.
Ales Komarekcba48ac2015-04-30 11:40:44 +020010
11Sample pillars
12==============
13
14Galera cluster master node
15
16.. code-block:: yaml
17
18 galera:
Petr Michalec5ff575c2017-11-06 15:37:05 +010019 version:
20 mysql: 5.6
21 galera: 3
Ales Komarekcba48ac2015-04-30 11:40:44 +020022 master:
23 enabled: true
24 name: openstack
25 bind:
26 address: 192.168.0.1
27 port: 3306
28 members:
29 - host: 192.168.0.1
30 port: 4567
31 - host: 192.168.0.2
32 port: 4567
33 admin:
34 user: root
35 password: pass
36 database:
37 name:
38 encoding: 'utf8'
39 users:
40 - name: 'username'
41 password: 'password'
42 host: 'localhost'
43 rights: 'all privileges'
Dzmitry Stremkouski9aa71082018-10-29 13:36:13 +010044 database: '*.*'
Ales Komarekcba48ac2015-04-30 11:40:44 +020045
46Galera cluster slave node
47
48.. code-block:: yaml
49
50 galera:
51 slave:
52 enabled: true
53 name: openstack
54 bind:
55 address: 192.168.0.2
56 port: 3306
57 members:
58 - host: 192.168.0.1
59 port: 4567
60 - host: 192.168.0.2
61 port: 4567
62 admin:
63 user: root
64 password: pass
65
Kirill Bespalov5f0c1d62017-08-15 15:29:32 +030066Enable TLS support:
67
68.. code-block:: yaml
69
70 galera:
71 slave or master:
72 ssl:
73 enabled: True
Dzmitry Stremkouskif8433bf2018-10-23 11:29:03 +020074 ciphers:
75 DHE-RSA-AES128-SHA:
76 enabled: True
77 DHE-RSA-AES256-SHA:
78 enabled: True
79 EDH-RSA-DES-CBC3-SHA:
80 name: EDH-RSA-DES-CBC3-SHA
81 enabled: True
82 AES128-SHA:AES256-SHA:
83 name: AES128-SHA:AES256-SHA
84 enabled: True
85 DES-CBC3-SHA:
86 enabled: True
Kirill Bespalov5f0c1d62017-08-15 15:29:32 +030087 # path
88 cert_file: /etc/mysql/ssl/cert.pem
89 key_file: /etc/mysql/ssl/key.pem
90 ca_file: /etc/mysql/ssl/ca.pem
91
92 # content (not required if files already exists)
93 key: << body of key >>
94 cert: << body of cert >>
95 cacert_chain: << body of ca certs chain >>
96
97
Petr Michalecbca6ffa2017-05-22 13:10:20 +020098Additional mysql users:
99
100.. code-block:: yaml
101
102 mysql:
103 server:
104 users:
105 - name: clustercheck
106 password: clustercheck
107 database: '*.*'
108 grants: PROCESS
Petr Michalecbca6ffa2017-05-22 13:10:20 +0200109 - name: inspector
110 host: 127.0.0.1
111 password: password
112 databases:
113 mydb:
114 - database: mydb
115 - table: mytable
Petr Michalec89c8c3f2017-05-22 17:19:22 +0200116 - grant_option: True
Petr Michalecbca6ffa2017-05-22 13:10:20 +0200117 - grants:
118 - all privileges
119
Vasyl Saienko79f69062018-01-29 11:04:58 +0200120Additional mysql SSL grants:
121
122.. code-block:: yaml
123
124 mysql:
125 server:
126 users:
127 - name: clustercheck
128 password: clustercheck
129 database: '*.*'
130 grants: PROCESS
131 ssl_option:
132 - SSL: True
133 - X509: True
134 - SUBJECT: <subject>
135 - ISSUER: <issuer>
136 - CIPHER: <cipher>
137
Petr Michalec89c8c3f2017-05-22 17:19:22 +0200138Additional check params:
Petr Michalec518b8342017-08-04 11:23:03 +0200139========================
Petr Michalec89c8c3f2017-05-22 17:19:22 +0200140
141.. code-block:: yaml
142
143 galera:
144 clustercheck:
145 - enabled: True
146 - user: clustercheck
147 - password: clustercheck
148 - available_when_donor: 0
149 - available_when_readonly: 1
150 - port 9200
151
Dmitry Kalashnikd4e5f472017-08-09 14:28:17 +0400152Configurable soft parameters
153============================
Kirill Bespalov162a4d42017-06-21 02:26:19 +0300154
OlgaGusarenko43e99902018-07-30 17:18:32 +0300155- ``galera_innodb_buffer_pool_size``
156 Default is ``3138M``
157- ``galera_max_connections``
158 Default is ``20000``
159- ``galera_innodb_read_io_threads``
160 Default is ``8``
161- ``galera_innodb_write_io_threads``
162 Default is ``8``
163- ``galera_wsrep_slave_threads``
164 Default is ``8``
165- ``galera_xtrabackup_parallel``
166 Default is 4
167- ``galera_error_log_enabled``
Michal Kobus6a33c422018-09-28 14:32:57 +0200168 Default is ``true``
169- ``galera_error_log_path``
170 Default is ``/var/log/mysql/error.log``
Kirill Bespalov162a4d42017-06-21 02:26:19 +0300171
172Usage:
OlgaGusarenko43e99902018-07-30 17:18:32 +0300173
Kirill Bespalov162a4d42017-06-21 02:26:19 +0300174.. code-block:: yaml
175
Dmitry Kalashnikd4e5f472017-08-09 14:28:17 +0400176 _param:
177 galera_innodb_buffer_pool_size: 1024M
Kirill Bespalov5f0c1d62017-08-15 15:29:32 +0300178 galera_max_connections: 200
Dennis Dmitriev2c572892018-03-05 23:32:34 +0200179 galera_innodb_read_io_threads: 16
180 galera_innodb_write_io_threads: 16
181 galera_wsrep_slave_threads: 8
182 galera_xtrabackup_parallel: 2
183 galera_error_log_enabled: true
Michal Kobus6a33c422018-09-28 14:32:57 +0200184 galera_error_log_path: /var/log/mysql/error.log
Kirill Bespalov162a4d42017-06-21 02:26:19 +0300185
Ales Komarekcba48ac2015-04-30 11:40:44 +0200186Usage
187=====
188
189MySQL Galera check sripts
190
191.. code-block:: bash
Petr Michalec89c8c3f2017-05-22 17:19:22 +0200192
Ales Komarekcba48ac2015-04-30 11:40:44 +0200193 mysql> SHOW STATUS LIKE 'wsrep%';
194
195 mysql> SHOW STATUS LIKE 'wsrep_cluster_size' ;"
196
197Galera monitoring command, performed from extra server
198
199.. code-block:: bash
200
201 garbd -a gcomm://ipaddrofone:4567 -g my_wsrep_cluster -l /tmp/1.out -d
202
OlgaGusarenko43e99902018-07-30 17:18:32 +0300203#. salt-call state.sls mysql
204#. Comment everything starting wsrep* (wsrep_provider, wsrep_cluster, wsrep_sst)
205#. service mysql start
206#. run on each node mysql_secure_install and filling root password.
Ales Komarekcba48ac2015-04-30 11:40:44 +0200207
OlgaGusarenko43e99902018-07-30 17:18:32 +0300208 .. code-block:: bash
Ales Komarekcba48ac2015-04-30 11:40:44 +0200209
Kirill Bespalov162a4d42017-06-21 02:26:19 +0300210 Enter current password for root (enter for none):
Ales Komarekcba48ac2015-04-30 11:40:44 +0200211 OK, successfully used password, moving on...
212
213 Setting the root password ensures that nobody can log into the MySQL
214 root user without the proper authorisation.
215
216 Set root password? [Y/n] y
Kirill Bespalov162a4d42017-06-21 02:26:19 +0300217 New password:
218 Re-enter new password:
Ales Komarekcba48ac2015-04-30 11:40:44 +0200219 Password updated successfully!
220 Reloading privilege tables..
221 ... Success!
222
223 By default, a MySQL installation has an anonymous user, allowing anyone
224 to log into MySQL without having to have a user account created for
225 them. This is intended only for testing, and to make the installation
226 go a bit smoother. You should remove them before moving into a
227 production environment.
228
229 Remove anonymous users? [Y/n] y
230 ... Success!
231
232 Normally, root should only be allowed to connect from 'localhost'. This
233 ensures that someone cannot guess at the root password from the network.
234
235 Disallow root login remotely? [Y/n] n
236 ... skipping.
237
238 By default, MySQL comes with a database named 'test' that anyone can
239 access. This is also intended only for testing, and should be removed
240 before moving into a production environment.
241
242 Remove test database and access to it? [Y/n] y
243 - Dropping test database...
244 ... Success!
245 - Removing privileges on test database...
246 ... Success!
247
248 Reloading the privilege tables will ensure that all changes made so far
249 will take effect immediately.
250
251 Reload privilege tables now? [Y/n] y
252 ... Success!
253
254 Cleaning up...
255
OlgaGusarenko43e99902018-07-30 17:18:32 +0300256#. service mysql stop
257#. uncomment all wsrep* lines except first server, where leave only in
258 my.cnf wsrep_cluster_address='gcomm://';
259#. start first node
260#. Start third node which is connected to first one
261#. Start second node which is connected to third one
262#. After starting cluster, it must be change cluster address at first starting node
263 without restart database and change config my.cnf.
Ales Komarekcba48ac2015-04-30 11:40:44 +0200264
OlgaGusarenko43e99902018-07-30 17:18:32 +0300265 .. code-block:: bash
Ales Komarekcba48ac2015-04-30 11:40:44 +0200266
OlgaGusarenko43e99902018-07-30 17:18:32 +0300267 mysql> SET GLOBAL wsrep_cluster_address='gcomm://10.0.0.2';
Ales Komarekcba48ac2015-04-30 11:40:44 +0200268
269Read more
270=========
271
272* https://github.com/CaptTofu/ansible-galera
273* http://www.sebastien-han.fr/blog/2012/04/15/active-passive-failover-cluster-on-a-mysql-galera-cluster-with-haproxy-lsb-agent/
274* http://opentodo.net/2012/12/mysql-multi-master-replication-with-galera/
275* http://www.codership.com/wiki/doku.php
OlgaGusarenko43e99902018-07-30 17:18:32 +0300276* http://www.sebastien-han.fr/blog/2012/04/01/mysql-multi-master-replication-with-galera/
Filip Pytloun5b356a72017-02-02 13:02:03 +0100277
OlgaGusarenko43e99902018-07-30 17:18:32 +0300278Documentation and bugs
Filip Pytloun5b356a72017-02-02 13:02:03 +0100279======================
280
OlgaGusarenko43e99902018-07-30 17:18:32 +0300281* http://salt-formulas.readthedocs.io/
282 Learn how to install and update salt-formulas
Filip Pytloun5b356a72017-02-02 13:02:03 +0100283
OlgaGusarenko43e99902018-07-30 17:18:32 +0300284* https://github.com/salt-formulas/salt-formula-galera/issues
285 In the unfortunate event that bugs are discovered, report the issue to the
286 appropriate issue tracker. Use the Github issue tracker for a specific salt
287 formula
Filip Pytloun5b356a72017-02-02 13:02:03 +0100288
OlgaGusarenko43e99902018-07-30 17:18:32 +0300289* https://launchpad.net/salt-formulas
290 For feature requests, bug reports, or blueprints affecting the entire
291 ecosystem, use the Launchpad salt-formulas project
Filip Pytloun5b356a72017-02-02 13:02:03 +0100292
OlgaGusarenko43e99902018-07-30 17:18:32 +0300293* https://launchpad.net/~salt-formulas-users
294 Join the salt-formulas-users team and subscribe to mailing list if required
Filip Pytloun5b356a72017-02-02 13:02:03 +0100295
OlgaGusarenko43e99902018-07-30 17:18:32 +0300296* https://github.com/salt-formulas/salt-formula-galera
297 Develop the salt-formulas projects in the master branch and then submit pull
298 requests against a specific formula
Filip Pytloun5b356a72017-02-02 13:02:03 +0100299
OlgaGusarenko43e99902018-07-30 17:18:32 +0300300* #salt-formulas @ irc.freenode.net
301 Use this IRC channel in case of any questions or feedback which is always
302 welcome
Filip Pytloun5b356a72017-02-02 13:02:03 +0100303