From 1c009999b7339403ed9ce0eb0bc32a3c1924be0d Mon Sep 17 00:00:00 2001 From: viq Date: Sun, 12 Nov 2017 09:18:02 +0100 Subject: [PATCH] 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` --- docs/infrastructure/fleet-on-centos.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/infrastructure/fleet-on-centos.md b/docs/infrastructure/fleet-on-centos.md index e417d75d0f..ca26f7d62c 100644 --- a/docs/infrastructure/fleet-on-centos.md +++ b/docs/infrastructure/fleet-on-centos.md @@ -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 ```