From 17cbbac19dab4da964109412ce5498cd5cc031ac Mon Sep 17 00:00:00 2001 From: tteck Date: Sat, 21 Aug 2021 20:42:54 -0400 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e8788c61..9817c976 100644 --- a/README.md +++ b/README.md @@ -208,11 +208,11 @@ sudo mysql ``` Prompt will change to ```MariaDB [(none)]>``` -Create a new local admin +Create a new local admin (Change the username and password to match your preferences) ``` CREATE USER 'admin'@'localhost' IDENTIFIED BY 'password'; ``` -Give local admin root privileges +Give local admin root privileges (Change the username and password to match from above) ``` GRANT ALL ON *.* TO 'admin'@'localhost' IDENTIFIED BY 'password' WITH GRANT OPTION; ```