[DiscordArchive] Hello all, sorry to bother, looked at the StackOverflow but I don't see any similar questions and th
[DiscordArchive] Hello all, sorry to bother, looked at the StackOverflow but I don't see any similar questions and th
Archived author: mynameismeat • Posted: 2023-09-14T00:45:51.699000+00:00
Original source
can you paste the section of docker-compose.yml for the authserver
Archived author: mynameismeat • Posted: 2023-09-14T00:45:54.474000+00:00
Original source
like, the whole thing
Archived author: Fijahh • Posted: 2023-09-14T00:47:06.553000+00:00
Original source
ac-authserver:
<<: *ac-shared-conf
tty: true
image: acore/ac-wotlk-authserver:${DOCKER_IMAGE_TAG:-7.0.0-dev.1}
restart: unless-stopped
ports:
- ${DOCKER_AUTH_EXTERNAL_PORT:-3724}:3724
expose:
- 3724
depends_on:
ac-database:
condition: service_healthy
ac-db-import:
condition: service_completed_successfully
Archived author: mynameismeat • Posted: 2023-09-14T00:50:34.430000+00:00
Original source
Yeah, I think you mainly need these changes in
https://github.com/azerothcore/acore-doc...7775bed0d3
Archived author: mynameismeat • Posted: 2023-09-14T00:50:49.860000+00:00
Original source
so the `patch` command and `n` to everything except `docker-compose.yml`
Archived author: mynameismeat • Posted: 2023-09-14T00:50:59.907000+00:00
Original source
backup first
Archived author: Fijahh • Posted: 2023-09-14T00:51:12.410000+00:00
Original source
Yep was already getting on that
Archived author: Fijahh • Posted: 2023-09-14T00:53:25.309000+00:00
Original source
sudo patch -p1 < 27.patch
The next patch would create the file conf/authserver.conf,
which already exists! Assume -R? [n]
Apply anyway? [n]
Skipping patch.
1 out of 1 hunk ignored
The next patch would create the file conf/dbimport.conf,
which already exists! Assume -R? [n]
Apply anyway? [n]
Skipping patch.
1 out of 1 hunk ignored
The next patch would create the file conf/worldserver.conf,
which already exists! Assume -R? [n]
Apply anyway? [n]
Skipping patch.
1 out of 1 hunk ignored
patching file docker-compose.yml
Hunk #1 succeeded at 55 (offset 3 lines).
Hunk #2 succeeded at 85 (offset 3 lines).
Hunk #3 succeeded at 131 (offset 3 lines).
patching file docker-compose.yml
Hunk #1 succeeded at 141 (offset 3 lines).
Hunk #2 succeeded at 183 (offset 3 lines).
Archived author: Fijahh • Posted: 2023-09-14T00:57:14.494000+00:00
Original source
Interesting, that added:
volumes:
- ./conf/authserver.conf:/azerothcore/env/dist/etc/authserver.conf
environment:
AC_LOGS_DIR: "/azerothcore/env/dist/logs"
AC_TEMP_DIR: "/azerothcore/env/dist/temp"
AC_LOGIN_DATABASE_INFO: "ac-database;3306;root;${DOCKER_DB_ROOT_PASSWORD:-password};acore_auth"
AC_SQLDRIVER_LOG_FILE: "SQLDriver.log"
AC_SQLDRIVER_QUERY_LOGGING: "1"
Archived author: Fijahh • Posted: 2023-09-14T01:00:22.780000+00:00
Original source
Whoops, things just got more interesting:
fire@erebor:/mnt/ssd/containers/acore-backup$ docker-compose up
Creating network "acore-backup_ac-network" with the default driver
Creating network "acore-backup_default" with the default driver
Creating network "acore-backup_ac-dev-network" with the default driver
Creating acore-backup_ac-eluna-ts-dev_1 ...
Creating acore-backup_ac-database_1 ...
Creating acore-backup_ac-database_1 ... error
Creating acore-backup_ac-eluna-ts-dev_1 ... done
Creating acore-backup_ac-client-data_1 ... done
Creating acore-docker-ac-worldserver-1 ... error
ERROR: for acore-docker-ac-worldserver-1 Cannot create container for service ac-worldserver: Conflict. The container name "/acore-docker-ac-worldserver-1" is already in use by container "7255509c1b1e0204d3ea8b8b08747f98a2011bd0388ae2861a7ad56811713747". You have to remove (or rename) that container to be able to reuse that name.
ERROR: for ac-database Cannot start service ac-database: driver failed programming external connectivity on endpoint acore-backup_ac-database_1 (864053e67892f6ba0a8d9f2f11a80fc2f8aa6046f03dc0046f83145301459b34): Bind for 0.0.0.0:63306 failed: port is already allocated
ERROR: for ac-worldserver Cannot create container for service ac-worldserver: Conflict. The container name "/acore-docker-ac-worldserver-1" is already in use by container "7255509c1b1e0204d3ea8b8b08747f98a2011bd0388ae2861a7ad56811713747". You have to remove (or rename) that container to be able to reuse that name.
ERROR: Encountered errors while bringing up the project.