Mirror HanXHX/ansible-mysql dari github.
Go to file
Emilien Mantel a98ee0dd0b Galera: bootstrap don't need systemd script helper 2016-09-25 15:18:02 +02:00
defaults Minor changes 2016-09-25 14:28:10 +02:00
handlers Default MySQL works on jessie 2015-07-12 12:47:44 +02:00
meta Drop wheezy support 2016-09-23 09:38:19 +02:00
tasks Galera: bootstrap don't need systemd script helper 2016-09-25 15:18:02 +02:00
templates mysql_extra_configuration rework 2016-09-25 11:23:38 +02:00
tests Fix idempotence... 2016-09-25 14:49:25 +02:00
.gitignore Ignore ansible retry files 2016-09-23 11:30:24 +02:00
.travis.yml Fix travis env var 2016-09-25 13:30:55 +02:00
LICENSE Initial commit 2015-07-12 00:47:54 +02:00
README.md Don't install percona repository (prevent APT conflicts) 2016-09-25 13:50:30 +02:00
Vagrantfile [GALERA] Fix galera name for vagrant 2016-09-23 10:18:28 +02:00

README.md

MySQL vendors for Debian Ansible role

Ansible Galaxy Build Status

Install and configure MySQL or MariaDB or Percona Server. Manage replication (master/slave). Create users and databases.

Requirements

None.

Role Variables

  • mysql_origin: origin of the package ("default" or "upstream")
  • mysql_vendor: "mysql", "mariadb", "mariadb_galera" (only with MariaDB upstream 10.1) or "percona"

Configuration

  • mysql_root_password: root password (should be protected with vault)

If you need a feature you can't configure, you can use this list. These config will go to /etc/mysql/conf.d/01-extra.

Databases

  • mysql_databases: list...

Users

Example:

mysql_users:
  - name: 'kiki'
    password: '123'
    priv: hihi.*:ALL
    host: '%'

Check "priv" syntax in mysql_user module documentation

Packaging

  • mariadb_version: 10.0 / 10.1 / 10.2
  • mariadb_repository: MariaDB upstream APT repository (see: MariaDB repositories tool)
  • percona_version: 5.5 / 5.6 / 5.7
  • percona_repository: Percona upstream APT repository (see: Percona APT doc)

Dependencies

None.

Example Playbook

- hosts: servers
  roles:
     - { role: HanXHX.mysql, mysql_origin: 'upstream', mysql_vendor: 'mariadb' }

License

GPLv2

Author Information