From 3f9db8efc30bf89df93a46b29a9d3279408e4f94 Mon Sep 17 00:00:00 2001 From: poll0rz Date: Sun, 18 Oct 2015 02:14:49 +0200 Subject: [PATCH] Install MariaDB instead of MySQL Server According to the Openstack docs (Kilo version, 2015 release), now you have to install MariaDB instead of MySQL because of compatibility and connection issues (I suffered them myself). The config templates and everything else are OK, everything will work. --- services/common/mysql.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/services/common/mysql.yaml b/services/common/mysql.yaml index 95c50e4..38fda98 100644 --- a/services/common/mysql.yaml +++ b/services/common/mysql.yaml @@ -5,16 +5,16 @@ gather_facts: True tasks: - - name: ensure mysql-server is installed + - name: ensure MariaDB is installed apt: - pkg: mysql-server - state: latest - update_cache: yes + pkg: mariadb-server + state: latest + update_cache: yes cache_valid_time: 600 - name: ensure mysql is stopped service: - name: mysql + name: mysql state: stopped - name: install mysql config file that binds to management network interface