diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/Install-with-Docker.md | 12 |
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 |
