From ae3bdc32b40c26863b1ce6f8cea632d8edea5d91 Mon Sep 17 00:00:00 2001 From: scottwilliams Date: Sat, 14 Sep 2024 13:22:52 -0700 Subject: [PATCH] Fix typo in SQL --- 03-setup-nextcloud/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03-setup-nextcloud/README.md b/03-setup-nextcloud/README.md index bd5a2fb..e49969b 100644 --- a/03-setup-nextcloud/README.md +++ b/03-setup-nextcloud/README.md @@ -34,7 +34,7 @@ Now, set a database root password: `/usr/bin/mysqladmin -u root password` Next, create the database: * Start the mysql client: `mysql -u root -p` * Create the nextcloud database: `CREATE DATABASE nextclouddb` -* Create/grant the nextcloud user: `GRANT ALL ON nextcloudb.* TO nextcloud@localhost IDENTIFIED BY 'SecurePasswordHere';` - Obviously, change this password. And remember these credentials, since we'll need them in the nextcloud setup. +* Create/grant the nextcloud user: `GRANT ALL ON nextclouddb.* TO nextcloud@localhost IDENTIFIED BY 'SecurePasswordHere';` - Obviously, change this password. And remember these credentials, since we'll need them in the nextcloud setup. ### SQLite