[DiscordArchive] I'm trying to get it set up with the main installation path on Debian 13. Currently MySQL isn't avai
[DiscordArchive] I'm trying to get it set up with the main installation path on Debian 13. Currently MySQL isn't avai
Archived author: gartred • Posted: 2025-09-16T18:51:17.541000+00:00
Original source
I'm trying to get it set up with the main installation path on Debian 13. Currently MySQL isn't available in any easy to use repo. I know Azerothcore says it doesn't want MariaDB, but is there any actual reason for this? are there scripts that expect you to have mysql installed to work or something?
Archived author: Nyeriah • Posted: 2025-09-16T18:55:31.713000+00:00
Original source
in short you can't maintain both efficiently
you can read more about it https://github.com/azerothcore/azerothco...pull/19451
Archived author: gartred • Posted: 2025-09-16T19:01:25.510000+00:00
Original source
And here I thought I was being smart by choosing the "stable" linux distro over Arch for my server.
Archived author: kastang • Posted: 2025-09-16T19:04:44.941000+00:00
Original source
It's trivial to install mysql on Debian, heres an excerpt from my build process. This get you the mysql-client needed to build Azeroth core. Use a mysql docker container for the server. This is intended to be run in a containerized environment, if you are running directly on your system you probably dont want the rm -rf lines.
```
ENV MYSQL_APT_CONFIG_VERSION=0.8.34-1
RUN apt-get update && \
wget https://dev.mysql.com/get/mysql-apt-config_${MYSQL_APT_CONFIG_VERSION}_all.deb && \
dpkg -i ./mysql-apt-config_${MYSQL_APT_CONFIG_VERSION}_all.deb \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN apt-get update && \
apt-get install -y --no-install-recommends \
mysql-client \
libmysqlclient-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
```
Archived author: gartred • Posted: 2025-09-16T19:07:56.018000+00:00
Original source
Thanks. I actually found the link to that libaio1 after a couple tries with one that just 404'd.
I was using Docker initially, but then I realized there's really no point given my situation. I've got a mini PC that I'm using as a home server so the server is all it's running.
Archived author: Crow • Posted: 2025-09-16T21:12:54.880000+00:00
Original source
Autobalance by default is enabled for all types of instances, including dungeons. It also has dynamic XP scaling enabled by default. It doesn’t apply outside of instances so the elites outside don’t get adjusted.
I don’t really know any more detail than that. I don’t use the mod because it had some sort of strange interaction with IP where it made Naxx40 boss adds level 63 instead of 60 or 61 like they should have been (thereby making mind control not castable on them) even when autobalance was disabled in the config.
Archived author: Larnian • Posted: 2025-09-16T21:39:23.133000+00:00
Original source
I restored to an earlier backup from 2 days ago - lost my character in the process but was worth it. I suspect that the issue had to do with the auction house bot module - it was really slowing down the worldserver despite me running a nasa grade PC. The restore doesn't have it installed nor will it Thanks for your help though
Archived author: Ryan Turner • Posted: 2025-09-16T21:40:00.011000+00:00
Original source
Keep in mind that nasa grade pcs, can still suffer for any perfoamnce issue if theres a funnel (bootle neck)
Archived author: Revision • Posted: 2025-09-16T21:41:29.899000+00:00
Original source
Not to mention performance issues on the side of azerothcore, no hardware will work around that.
Archived author: Revision • Posted: 2025-09-16T21:42:56.334000+00:00
Original source
Oh and crashes can't be solved by **any** hardware, it's a software issue.