From e05b07270865a88de20f83b133cd1a9fd95e763a Mon Sep 17 00:00:00 2001 From: TristanAncelet Date: Mon, 30 Aug 2021 15:27:17 -0500 Subject: [PATCH] fixed another character --- Linux/Setup_MySQL_Server.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Linux/Setup_MySQL_Server.md b/Linux/Setup_MySQL_Server.md index b6075ac..2c872da 100755 --- a/Linux/Setup_MySQL_Server.md +++ b/Linux/Setup_MySQL_Server.md @@ -40,7 +40,7 @@ After creating a database and creating a few tables, I created a user and gave t var2 INT AUTOINCREMENT, ); - CREATE USER 'user'@'ip address';IDENTIFIED BY Password('password'); + CREATE USER 'user'@'ip address' IDENTIFIED BY Password('password'); GRANT ALL PRIVILEGES ON 'test_database'.* TO 'user'@'ip address';