diff options
author | Justin chi <chigang@huawei.com> | 2015-08-06 06:23:23 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2015-08-06 06:23:24 +0000 |
commit | 5aedf594112c0749b6e9039d15b9fe70d210a942 (patch) | |
tree | 9855abff580522e7eb048568f1dfb2ce39edcbe9 /deploy/adapters/ansible/roles/database/tasks/mariadb.yml | |
parent | 4fb32751f9c8e82a729780fc5dedae71cecc32b6 (diff) | |
parent | 974a3c3bf5b71cd6b07c1b4b51044bc535ff4456 (diff) |
Merge "support deployment openstack juno with ansible for compass in ubuntu 14.04"
Diffstat (limited to 'deploy/adapters/ansible/roles/database/tasks/mariadb.yml')
-rw-r--r-- | deploy/adapters/ansible/roles/database/tasks/mariadb.yml | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/deploy/adapters/ansible/roles/database/tasks/mariadb.yml b/deploy/adapters/ansible/roles/database/tasks/mariadb.yml new file mode 100644 index 00000000..50618bfc --- /dev/null +++ b/deploy/adapters/ansible/roles/database/tasks/mariadb.yml @@ -0,0 +1,39 @@ +--- +- name: install python-mysqldb + action: "{{ ansible_pkg_mgr }} name={{ item }} state=present force=yes" + with_items: maridb_packages + +- name: create mysql log directy + file: path=/var/log/mysql state=directory owner=mysql group=mysql mode=0755 + +- name: update mariadb my.cnf + template: src=my.cnf dest=/etc/mysql/my.cnf backup=yes + +- name: update galera wsrep.cnf + template: src=wsrep.cnf dest=/etc/mysql/conf.d/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: + - mysql + +- name: create database/user + shell: /opt/data.sh + when: HA_CLUSTER[inventory_hostname] == '' + tags: + - mysql_user |