From 74b2f05617049b015cea6df96651319af85154c0 Mon Sep 17 00:00:00 2001 From: "rieger::CLOUD" Date: Wed, 11 Jul 2018 13:47:15 +0200 Subject: [PATCH] Cosmetical changes Minor Cosmetical and grammatical changes --- .../linux_database_configuration.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/admin_manual/configuration_database/linux_database_configuration.rst b/admin_manual/configuration_database/linux_database_configuration.rst index 1282a0eb0..9c15a72ac 100644 --- a/admin_manual/configuration_database/linux_database_configuration.rst +++ b/admin_manual/configuration_database/linux_database_configuration.rst @@ -140,14 +140,14 @@ You can quit the prompt by entering:: quit -If you prefer UTF8MB4 as your preferred collation setting instead: +If you prefer UTF8MB4 as your database collation setting: :: -CREATE USER 'username'@'localhost' IDENTIFIED BY 'password'; -CREATE DATABASE IF NOT EXISTS nextcloud CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci; -GRANT ALL PRIVILEGES on nextcloud.* to 'username'@'localhost'; -FLUSH privileges; + CREATE USER 'username'@'localhost' IDENTIFIED BY 'password'; + CREATE DATABASE IF NOT EXISTS nextcloud CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci; + GRANT ALL PRIVILEGES on nextcloud.* to 'username'@'localhost'; + FLUSH privileges; You can quit the prompt by entering::