[DiscordArchive] Not sure if this is the right thread to post in, but I'm trying to install azerothcore on my TrueNAS
[DiscordArchive] Not sure if this is the right thread to post in, but I'm trying to install azerothcore on my TrueNAS
Archived author: CommanderX • Posted: 2023-02-14T03:32:30.141000+00:00
Original source
Not sure if this is the right thread to post in, but I'm trying to install azerothcore on my TrueNAS Scale server so I don't have to have it run on my laptop all the time. I'm not quite sure on how to do the docker instructions in there. I'm currently attempting to do it with portainer, but it isn't working out when I try to build it with the github repository and use the `docker-compose.yml` as the manifest. Does anyone have experience with getting this to run on a scale server?
master) ✗ docker compose ps ac-database
master) ✗ mysql --protocol tcp -h localhost --port 3307 -u root -p acore_world -e 'show databases;'Archived author: mynameismeat • Posted: 2023-02-14T14:27:26.042000+00:00
Original source
Sorry - work caught up with me and I forgot about this. if the port is forwarded (shows up in `docker compose ps` output with an arrow) you can connect to it via "localhost" as the hostname. note that I publish 3307 rather than 3306, so I need to use that port instead:
```
➜ azerothcore-wotlk git
master) ✗ docker compose ps ac-database
NAME IMAGE COMMAND SERVICE CREATED STATUS PORTS
azerothcore-wotlk-ac-database-1 mysql:8.0 "docker-entrypoint.s…" ac-database 2 days ago Up 2 days (healthy) 33060/tcp, 0.0.0.0:3307->3306/tcp
➜ azerothcore-wotlk git
master) ✗ mysql --protocol tcp -h localhost --port 3307 -u root -p acore_world -e 'show databases;'
Enter password:
+--------------------+
| Database |
+--------------------+
| acore_auth |
| acore_characters |
| acore_world |
| information_schema |
| mysql |
| performance_schema |
| sys |
+--------------------+
```
Archived author: mynameismeat • Posted: 2023-02-14T14:28:04.037000+00:00
Original source
I believe it should be similar in Windows/Mac tools as well