From 2a250d7bc37f5b5a4f7e55b502e26f99cffb5202 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Sat, 2 May 2020 09:46:18 +0200 Subject: [PATCH] Fix so the database setup description is compatible with MySQL 8 (#7340) [ci skip] --- CHANGELOG | 1 + INSTALL | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index a7042b1ce..f9aaaf8fb 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,7 @@ CHANGELOG Roundcube Webmail =========================== - Fix bug in extracting required plugins from composer.json that led to spurious error in log (#7364) +- Fix so the database setup description is compatible with MySQL 8 (#7340) RELEASE 1.4.4 ------------- diff --git a/INSTALL b/INSTALL index c99cd5b8f..91d447ba5 100644 --- a/INSTALL +++ b/INSTALL @@ -106,9 +106,9 @@ importing the table layout and granting the proper permissions to the roundcube user. Here is an example of that procedure: # mysql -> CREATE DATABASE roundcubemail /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */; -> GRANT ALL PRIVILEGES ON roundcubemail.* TO roundcube@localhost - IDENTIFIED BY 'password'; +> CREATE DATABASE roundcubemail CHARACTER SET utf8 COLLATE utf8_general_ci; +> CREATE USER roundcube@localhost IDENTIFIED BY 'password'; +> GRANT ALL PRIVILEGES ON roundcubemail.* TO roundcube@localhost; > quit # mysql roundcubemail < SQL/mysql.initial.sql