Use a working MySQL version (#1598)

Use repo that installs `5.7` version of MySQL, as opposed to `5.6` that fails when running `prepare db`
This commit is contained in:
viq 2017-11-12 09:18:02 +01:00 committed by Mike Arpaia
parent 78b831a6d2
commit 1c009999b7

View file

@ -33,8 +33,8 @@ $ sudo cp fleet/linux/fleet /usr/bin/fleet
To install the MySQL server files, run the following:
```
$ wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm
$ sudo rpm -i mysql-community-release-el7-5.noarch.rpm
$ wget https://repo.mysql.com/mysql57-community-release-el7.rpm
$ sudo rpm -i mysql57-community-release-el7.rpm
$ sudo yum update
$ sudo yum install mysql-server
```