Doc change and commands tested command on v5 and v8 (#6886)

This commit is contained in:
Justin Borromeo 2019-01-18 15:13:11 -08:00 committed by Gian Merlino
parent cc06e7e2df
commit 86e171a234
1 changed files with 5 additions and 2 deletions

View File

@ -70,8 +70,11 @@ Copy or symlink this file to `extensions/mysql-metadata-storage` under the distr
-- create a druid database, make sure to use utf8mb4 as encoding -- create a druid database, make sure to use utf8mb4 as encoding
CREATE DATABASE druid DEFAULT CHARACTER SET utf8mb4; CREATE DATABASE druid DEFAULT CHARACTER SET utf8mb4;
-- create a druid user, and grant it all permission on the database we just created -- create a druid user
GRANT ALL ON druid.* TO 'druid'@'localhost' IDENTIFIED BY 'diurd'; CREATE USER 'druid'@'localhost' IDENTIFIED BY 'diurd';
-- grant the user all the permissions on the database we just created
GRANT ALL PRIVILEGES ON druid.* TO 'druid'@'localhost';
``` ```
3. Configure your Druid metadata storage extension: 3. Configure your Druid metadata storage extension: