[DiscordArchive] <@!224931509046345729> Are you running it in docker?
[DiscordArchive] <@!224931509046345729> Are you running it in docker?
Archived author: H0lysp4nk • Posted: 2020-04-14T13:09:35.898000+00:00
Original source
<@!224931509046345729> Are you running it in docker?
Archived author: H0lysp4nk • Posted: 2020-04-14T13:11:16.778000+00:00
Original source
If so 127.0.0.1 won't work as it'll be trying to connect to itself. You'll need to change it to "ac-database" which will resolve to the IP Address of the database container
Archived author: H0lysp4nk • Posted: 2020-04-14T13:13:07.238000+00:00
Original source
For instance your config would go from:
```
LoginDatabaseInfo = "127.0.0.1;3306;root;root;acore_auth"
WorldDatabaseInfo = "127.0.0.1;3306;root;root;acore_world"
CharacterDatabaseInfo = "127.0.0.1;3306;root;root;acore_characters"
```
To:
```
LoginDatabaseInfo = "ac-database;3306;root;root;acore_auth"
WorldDatabaseInfo = "ac-database;3306;root;root;acore_world"
CharacterDatabaseInfo = "ac-database;3306;root;root;acore_characters"
```
Archived author: H0lysp4nk • Posted: 2020-04-14T13:13:41.996000+00:00
Original source
Ah, didn't see your update "Forgot to update creature to have wander_distance and not spawndist " my bad
Archived author: Shin • Posted: 2020-04-14T13:34:20.448000+00:00
Original source
> Forgot to update `creature` to have wander_distance and not spawndist
he solved
Archived author: Kitzunu • Posted: 2020-04-14T13:53:09.772000+00:00
Original source
I run windows
Archived author: Kitzunu • Posted: 2020-04-14T13:53:27.971000+00:00
Original source
Thanks tho!!