You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Following the linux-core-installation simply does not work as-is.
The git commands clone to a directory azerothcore though the following sentence says "This will create an azerothcore-wotlk directory containing the AC source files.", which is incorrect.
The cmake command sets -DCMAKE_INSTALL_PREFIX=$HOME/azeroth-server/, which is a distinctly different directory again. When you make install, you get the binaries built with entirely invalid references to the surrounding data, and no acore.sh which the rest of the instructions expect to be there.
The service units then make reference to ExecStart=/srv/azerothcore-wotlk/acore.sh run-authserver which is yet another directory that doesn't exist. Nothing's been done in /srv at all up to this point in fact (unless it's the user's $HOME, I suppose, but that's unlikely).
Now I don't know the intended correct method, but I worked out was:
Clone into $HOME/azerothcore
Build with -DCMAKE_INSTALL_PREFIX=$HOME/azerothcore/env/dist/
Set the service units to reference /home/[whoever]/azerothcore
Whether to match my method, or something else, the instructions should be adjusted to resolve these issues.
To reproduce
Follow the instructions verbatim. Observe that acore.sh run-authserver can't find the binaries, and (IIRC) the binaries can't start because they've got paths hardcoded to the install directory which is expected to include other content that isn't present.
Expected behavior
Following the instructions verbatim should produce a working application.
Screenshots
No response
Desktop
N/A (this was a build on Rocky Linux 8 but there is no system in the world where this would work any differently)
Smartphone
N/A
Additional context
No response
The text was updated successfully, but these errors were encountered:
Describe the bug
Following the
linux-core-installation
simply does not work as-is.azerothcore
though the following sentence says "This will create an azerothcore-wotlk directory containing the AC source files.", which is incorrect.-DCMAKE_INSTALL_PREFIX=$HOME/azeroth-server/
, which is a distinctly different directory again. When youmake install
, you get the binaries built with entirely invalid references to the surrounding data, and noacore.sh
which the rest of the instructions expect to be there.ExecStart=/srv/azerothcore-wotlk/acore.sh run-authserver
which is yet another directory that doesn't exist. Nothing's been done in/srv
at all up to this point in fact (unless it's the user's$HOME
, I suppose, but that's unlikely).Now I don't know the intended correct method, but I worked out was:
$HOME/azerothcore
-DCMAKE_INSTALL_PREFIX=$HOME/azerothcore/env/dist/
/home/[whoever]/azerothcore
Whether to match my method, or something else, the instructions should be adjusted to resolve these issues.
To reproduce
Follow the instructions verbatim. Observe that
acore.sh run-authserver
can't find the binaries, and (IIRC) the binaries can't start because they've got paths hardcoded to the install directory which is expected to include other content that isn't present.Expected behavior
Following the instructions verbatim should produce a working application.
Screenshots
No response
Desktop
N/A (this was a build on Rocky Linux 8 but there is no system in the world where this would work any differently)
Smartphone
N/A
Additional context
No response
The text was updated successfully, but these errors were encountered: