summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorYehonal <yehonal.azeroth@gmail.com>2020-12-17 17:58:27 +0100
committerGitHub <noreply@github.com>2020-12-17 17:58:27 +0100
commitab417ce6888a1e418916e65a6bdcaa2ae22e2e1b (patch)
treeaebacee02a1d88cf8e72a4807d5169f9bf5609a5 /docs
parent1852e81873ebe539d17215da9679711a4425576b (diff)
downloadwiki-ab417ce6888a1e418916e65a6bdcaa2ae22e2e1b.tar.gz
wiki-ab417ce6888a1e418916e65a6bdcaa2ae22e2e1b.tar.bz2
wiki-ab417ce6888a1e418916e65a6bdcaa2ae22e2e1b.zip
Update Database-Setup.md
Diffstat (limited to 'docs')
-rw-r--r--docs/Database-Setup.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/Database-Setup.md b/docs/Database-Setup.md
index 0caef10..229e073 100644
--- a/docs/Database-Setup.md
+++ b/docs/Database-Setup.md
@@ -6,7 +6,7 @@ You can setup the database manually or using the automated script.
The `db_assembler` script and the `acore.sh` dashboard both use by default the **acore** db user for the database connection. Running for the first time the assembler command should create the user for you, however, if you're having permissions error or any other issue with that user, please open your MySQL client with the root user and run the following queries:
-```SQL
+```
DROP USER IF EXISTS 'acore'@'localhost';
DROP USER IF EXISTS 'acore'@'127.0.0.1';
CREATE USER 'acore'@'localhost' IDENTIFIED BY 'acore';