Forums WoW Modding Support Archives Azerothcore Discord Archives [DiscordArchive] Hi everyone,

[DiscordArchive] Hi everyone,

[DiscordArchive] Hi everyone,

Pages (2): 1 2 Next
rektbyfaith
Administrator
0
10-23-2025, 02:07 PM
#1
Archived author: Deleted User • Posted: 2022-08-26T04:52:57.412000+00:00
Original source

hi everyone,

i have faced the issue the issue with not having permission to /azerothcore/env/dist/bin during my second build(using docker on win10) after adding some modules. I explicitly had to state ownership to that dir as per: https://stackoverflow.com/questions/7319...windows-10

for convenience diff is here:
$ git diff apps/compiler/includes/functions.sh

@@ -103,6 +103,7 @@ function comp_compile() {
comp_ccacheResetStats

time make -j $MTHREADS
+ sudo chown -R acore:acore /azerothcore/env/dist/bin
make -j $MTHREADS install

comp_ccacheShowStats

i think it might wsl2 only problem as files also exist on windows fs too and might be modified by editors etc on windows outside wsl2. Does it make sense to make a PR for this change ?
[Embed: Failed to build docker container for AzerothCore in Windows 10]
I am following the tutorial at https://www.azerothcore.org/wiki/install-with-docker but it fails when executing acore.sh docker build with the following message:
Install the project...
-- Install
https://stackoverflow.com/questions/7319...windows-10
rektbyfaith
10-23-2025, 02:07 PM #1

Archived author: Deleted User • Posted: 2022-08-26T04:52:57.412000+00:00
Original source

hi everyone,

i have faced the issue the issue with not having permission to /azerothcore/env/dist/bin during my second build(using docker on win10) after adding some modules. I explicitly had to state ownership to that dir as per: https://stackoverflow.com/questions/7319...windows-10

for convenience diff is here:
$ git diff apps/compiler/includes/functions.sh

@@ -103,6 +103,7 @@ function comp_compile() {
comp_ccacheResetStats

time make -j $MTHREADS
+ sudo chown -R acore:acore /azerothcore/env/dist/bin
make -j $MTHREADS install

comp_ccacheShowStats

i think it might wsl2 only problem as files also exist on windows fs too and might be modified by editors etc on windows outside wsl2. Does it make sense to make a PR for this change ?
[Embed: Failed to build docker container for AzerothCore in Windows 10]
I am following the tutorial at https://www.azerothcore.org/wiki/install-with-docker but it fails when executing acore.sh docker build with the following message:
Install the project...
-- Install
https://stackoverflow.com/questions/7319...windows-10

rektbyfaith
Administrator
0
10-23-2025, 02:12 PM
#2
Archived author: Tereneckla • Posted: 2025-10-23T14:12:25.071000+00:00
Original source

only mysql is supported
rektbyfaith
10-23-2025, 02:12 PM #2

Archived author: Tereneckla • Posted: 2025-10-23T14:12:25.071000+00:00
Original source

only mysql is supported

rektbyfaith
Administrator
0
10-23-2025, 02:17 PM
#3
Archived author: Sonkei • Posted: 2025-10-23T14:17:12.049000+00:00
Original source

Yes, I tried to install it from sources but have an issue when building mysql.
I was wondering if anyone had found a way around, or if there is anything blocking the use of Percona Server (open source mysql server)
rektbyfaith
10-23-2025, 02:17 PM #3

Archived author: Sonkei • Posted: 2025-10-23T14:17:12.049000+00:00
Original source

Yes, I tried to install it from sources but have an issue when building mysql.
I was wondering if anyone had found a way around, or if there is anything blocking the use of Percona Server (open source mysql server)

rektbyfaith
Administrator
0
10-23-2025, 02:20 PM
#4
Archived author: Revision • Posted: 2025-10-23T14:20:04.889000+00:00
Original source

It depends on what the issue is
rektbyfaith
10-23-2025, 02:20 PM #4

Archived author: Revision • Posted: 2025-10-23T14:20:04.889000+00:00
Original source

It depends on what the issue is

rektbyfaith
Administrator
0
10-23-2025, 02:27 PM
#5
Archived author: kastang • Posted: 2025-10-23T14:27:19.417000+00:00
Original source

I use Percona Server and it works fine -- it's a drop-in MySQL replacement.
rektbyfaith
10-23-2025, 02:27 PM #5

Archived author: kastang • Posted: 2025-10-23T14:27:19.417000+00:00
Original source

I use Percona Server and it works fine -- it's a drop-in MySQL replacement.

rektbyfaith
Administrator
0
10-23-2025, 02:28 PM
#6
Archived author: kastang • Posted: 2025-10-23T14:28:32.397000+00:00
Original source

I use it for the baked-in performance benefits versus stock MySQL 8.4.
I run it with 5,000 playerbots, but I am the only "real" user connected.
rektbyfaith
10-23-2025, 02:28 PM #6

Archived author: kastang • Posted: 2025-10-23T14:28:32.397000+00:00
Original source

I use it for the baked-in performance benefits versus stock MySQL 8.4.
I run it with 5,000 playerbots, but I am the only "real" user connected.

rektbyfaith
Administrator
0
10-23-2025, 02:34 PM
#7
Archived author: Sonkei • Posted: 2025-10-23T14:34:39.486000+00:00
Original source

thank you for your feedback !
did you have to do any modification to the code to build it with Percona Server ?
It seems cmake doesn’t detect mysql version when generating the makefile
rektbyfaith
10-23-2025, 02:34 PM #7

Archived author: Sonkei • Posted: 2025-10-23T14:34:39.486000+00:00
Original source

thank you for your feedback !
did you have to do any modification to the code to build it with Percona Server ?
It seems cmake doesn’t detect mysql version when generating the makefile

rektbyfaith
Administrator
0
10-23-2025, 02:42 PM
#8
Archived author: kastang • Posted: 2025-10-23T14:42:20.038000+00:00
Original source

I don't build Percona I just run it in Docker using `percona/percona-server:8.4` image.
rektbyfaith
10-23-2025, 02:42 PM #8

Archived author: kastang • Posted: 2025-10-23T14:42:20.038000+00:00
Original source

I don't build Percona I just run it in Docker using `percona/percona-server:8.4` image.

rektbyfaith
Administrator
0
10-23-2025, 02:42 PM
#9
Archived author: Sonkei • Posted: 2025-10-23T14:42:26.765000+00:00
Original source

I understand that mysql is not detected, but percona-server (with mysql links) is properly installed
rektbyfaith
10-23-2025, 02:42 PM #9

Archived author: Sonkei • Posted: 2025-10-23T14:42:26.765000+00:00
Original source

I understand that mysql is not detected, but percona-server (with mysql links) is properly installed

rektbyfaith
Administrator
0
10-23-2025, 02:42 PM
#10
Archived author: kastang • Posted: 2025-10-23T14:42:51.884000+00:00
Original source

You need mysql client libraries to compile AC.
rektbyfaith
10-23-2025, 02:42 PM #10

Archived author: kastang • Posted: 2025-10-23T14:42:51.884000+00:00
Original source

You need mysql client libraries to compile AC.

Pages (2): 1 2 Next
Recently Browsing
 1 Guest(s)
Recently Browsing
 1 Guest(s)