Skip to content

Commit

Permalink
Install MariaDB instead of MySQL Server
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
poll0rz committed Oct 18, 2015
1 parent a3ba13b commit 3f9db8e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions services/common/mysql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3f9db8e

Please sign in to comment.