aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/database/tasks/mariadb.yml
blob: dbd76c68af9d82e9927ea0e0813d0386d346778a (plain)
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
---
- name: install python-mysqldb
  action: "{{ ansible_pkg_mgr }} name={{ item }} state=present"
  with_items: maridb_packages | union(packages_noarch)

- name: create mysql log directy
  file: path=/var/log/mysql state=directory owner=mysql group=mysql mode=0755

- name: update mariadb config file
  template: src={{ item }} dest={{ mysql_config_file_path }}/{{ item }} backup=yes
  with_items: mysql_config_file_name

- name: update galera wsrep.cnf
  template: src=wsrep.cnf dest={{ wsrep_config_file_path }}/wsrep.cnf backup=yes

- name: update wsrep_sst_rsync uid
  lineinfile: dest=/usr/bin/wsrep_sst_rsync state=absent regexp="\s*uid = \$MYUID$"  backup=yes

- name: update wsrep_sst_rsync gid
  lineinfile: dest=/usr/bin/wsrep_sst_rsync state=absent regexp="\s*gid = \$MYGID$"  backup=yes

- name: manually restart mysql server
  service: name=mysql state=restarted enabled=yes
  register: result
  until: result|success
  retries: 5
  delay: 5
  tags:
    - mysql_restart

- name: generate mysql service list
  shell: echo {{ item }} >> /opt/service
  with_items: services_noarch

- name: create database/user
  shell: /opt/data.sh
  when: HA_CLUSTER[inventory_hostname] == ''
  tags:
    - mysql_user