summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrien Pasteur <54660114+adrsr@users.noreply.github.com>2021-03-08 16:52:56 +0100
committerGitHub <noreply@github.com>2021-03-08 16:52:56 +0100
commit5bfbd244880e33900cacd627a9fb6d8bf295104e (patch)
tree74b58b4d91cc18a6ec3e0d3470dce74ad23b0e5d
parentb5a15fc1da9d6b9b2535e95b93bb385c89c9ec83 (diff)
downloadwiki-5bfbd244880e33900cacd627a9fb6d8bf295104e.tar.gz
wiki-5bfbd244880e33900cacd627a9fb6d8bf295104e.tar.bz2
wiki-5bfbd244880e33900cacd627a9fb6d8bf295104e.zip
docs: Update Install-with-Docker.md (#406)
-rw-r--r--docs/Install-with-Docker.md12
1 files changed, 11 insertions, 1 deletions
diff --git a/docs/Install-with-Docker.md b/docs/Install-with-Docker.md
index a87f3d0..9040a65 100644
--- a/docs/Install-with-Docker.md
+++ b/docs/Install-with-Docker.md
@@ -86,10 +86,20 @@ Docker will build and run your containers. Meanwhile you will see messages like:
**Don't panic**. Your server processes are simply waiting for the database container to be ready, it can take a while (depends on your machine).
-Your server will be up and running shortly.
+Your server will be up and running shortly.
+
+**4) Access database and update realmlist**
+
To access your MySQL database we recommend clients like [HeidiSQL](https://www.heidisql.com/) (for Windows/Linux+Wine) or [SequelPro](https://www.sequelpro.com/) (for macOS). Use `root` as user and `127.0.0.1` as default host.
The default password of the root DB user will be `password`.
+Unless your server installation is on the same network as your client, you might want to update the `realmlist` address in the `acore_auth` database with your server public IP address :
+```sql
+USE acore_auth;
+SELECT * FROM realmlist;
+UPDATE realmlist SET address='<SERVER PUBLIC IP ADDRESS>';
+```
+
## More info
### Memory usage