From fdc4c5ad0c251bc4886022e4694a85721781f80a Mon Sep 17 00:00:00 2001 From: Marcus Furlong Date: Thu, 8 Aug 2024 21:42:03 -0400 Subject: [PATCH] update mysql instructions --- INSTALL.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index c97a865c..30a6725c 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -166,7 +166,10 @@ $ mysql mysql> CREATE DATABASE patchman CHARACTER SET utf8 COLLATE utf8_general_ci; Query OK, 1 row affected (0.00 sec) -mysql> GRANT ALL PRIVILEGES ON patchman.* TO patchman@localhost IDENTIFIED BY 'changeme'; +mysql> CREATE USER patchman@localhost IDENTIFIED BY 'changeme'; +Query OK, 0 rows affected (0.00 sec) + +mysql> GRANT ALL PRIVILEGES ON patchman.* TO patchman@localhost; Query OK, 0 rows affected (0.00 sec) ```