Forums WoW Modding Support Archives Azerothcore Discord Archives [DiscordArchive] Hello ! I try to install Azerothcore on a linux server (ubuntu) it's my first wow private server pro

[DiscordArchive] Hello ! I try to install Azerothcore on a linux server (ubuntu) it's my first wow private server pro

[DiscordArchive] Hello ! I try to install Azerothcore on a linux server (ubuntu) it's my first wow private server pro

rektbyfaith
Administrator
0
02-13-2024, 11:43 PM
#1
Archived author: Paul • Posted: 2024-02-13T23:43:27.258000+00:00
Original source

Hello ! I try to install Azerothcore on a linux server (ubuntu) it's my first wow private server project and i successfully install it with regular installation but i would love to have bot in my game so i try installing this modules : https://www.azerothcore.org/catalogue.ht.../472857975 but i not able to make it, can some one help me ?
[Embed: AzerothCore]
AzerothCore, the open source MMORPG server application
https://www.azerothcore.org/catalogue.html
rektbyfaith
02-13-2024, 11:43 PM #1

Archived author: Paul • Posted: 2024-02-13T23:43:27.258000+00:00
Original source

Hello ! I try to install Azerothcore on a linux server (ubuntu) it's my first wow private server project and i successfully install it with regular installation but i would love to have bot in my game so i try installing this modules : https://www.azerothcore.org/catalogue.ht.../472857975 but i not able to make it, can some one help me ?
[Embed: AzerothCore]
AzerothCore, the open source MMORPG server application
https://www.azerothcore.org/catalogue.html

rektbyfaith
Administrator
0
02-13-2024, 11:48 PM
#2
Archived author: Paul • Posted: 2024-02-13T23:48:21.783000+00:00
Original source

here is the command i use in order :

sudo apt update && sudo apt full-upgrade -y
sudo apt install git cmake make gcc g++ clang libssl-dev libbz2-dev libreadline-dev libncurses-dev libboost-all-dev mariadb-server mariadb-client libmariadb-dev libmariadb-dev-compat build-essential -y



git clone https://github.com/ZhengPeiRu21/azerothcore-wotlk.git --branch Playerbot --single-branch azerothcore

cd azerothcore
mkdir build
cd build


cmake ../ -DCMAKE_INSTALL_PREFIX=$HOME/azeroth-server/ -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ -DWITH_WARNINGS=1 -DTOOLS=0 -DSCRIPTS=static -DMODULES=static

make -j $(nproc) install

mkdir /home/paul/azeroth-server/data
cd /home/paul/azeroth-server/data
wget https://github.com/wowgaming/client-data...6/data.zip
7z x data.zip
rm data.zip

mkdir /home/paul/azeroth-server/etc/backup
cp /home/paul/azeroth-server/etc/authserver.conf.dist /home/paul/azeroth-server/etc/worldserver.conf.dist /home/paul/azeroth-server/etc/backup/


mv /home/paul/azeroth-server/etc/authserver.conf.dist /home/paul/azeroth-server/etc/authserver.conf
mv /home/paul/azeroth-server/etc/worldserver.conf.dist /home/paul/azeroth-server/etc/worldserver.conf
[Embed: GitHub - ZhengPeiRu21/azerothcore-wotlk: Complete Open Source and M...]
Complete Open Source and Modular solution for MMO. Contribute to ZhengPeiRu21/azerothcore-wotlk development by creating an account on GitHub.
https://github.com/ZhengPeiRu21/azerothcore-wotlk.git
rektbyfaith
02-13-2024, 11:48 PM #2

Archived author: Paul • Posted: 2024-02-13T23:48:21.783000+00:00
Original source

here is the command i use in order :

sudo apt update && sudo apt full-upgrade -y
sudo apt install git cmake make gcc g++ clang libssl-dev libbz2-dev libreadline-dev libncurses-dev libboost-all-dev mariadb-server mariadb-client libmariadb-dev libmariadb-dev-compat build-essential -y



git clone https://github.com/ZhengPeiRu21/azerothcore-wotlk.git --branch Playerbot --single-branch azerothcore

cd azerothcore
mkdir build
cd build


cmake ../ -DCMAKE_INSTALL_PREFIX=$HOME/azeroth-server/ -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ -DWITH_WARNINGS=1 -DTOOLS=0 -DSCRIPTS=static -DMODULES=static

make -j $(nproc) install

mkdir /home/paul/azeroth-server/data
cd /home/paul/azeroth-server/data
wget https://github.com/wowgaming/client-data...6/data.zip
7z x data.zip
rm data.zip

mkdir /home/paul/azeroth-server/etc/backup
cp /home/paul/azeroth-server/etc/authserver.conf.dist /home/paul/azeroth-server/etc/worldserver.conf.dist /home/paul/azeroth-server/etc/backup/


mv /home/paul/azeroth-server/etc/authserver.conf.dist /home/paul/azeroth-server/etc/authserver.conf
mv /home/paul/azeroth-server/etc/worldserver.conf.dist /home/paul/azeroth-server/etc/worldserver.conf
[Embed: GitHub - ZhengPeiRu21/azerothcore-wotlk: Complete Open Source and M...]
Complete Open Source and Modular solution for MMO. Contribute to ZhengPeiRu21/azerothcore-wotlk development by creating an account on GitHub.
https://github.com/ZhengPeiRu21/azerothcore-wotlk.git

rektbyfaith
Administrator
0
02-13-2024, 11:48 PM
#3
Archived author: Paul • Posted: 2024-02-13T23:48:25.095000+00:00
Original source

nano /home/paul/azeroth-server/etc/worldserver.conf #change dir data

sudo systemctl status mariadb.service

sudo mysql_secure_installation

[First option leave blank and hit enter]
[N to switch to unix_socket authentication]
[Y to change the root password]
[Y to remove anonymous users]
[Y or N to disallow root login remotely]
[Y to remove test DB]
[Y to reload privilege tables now]


sudo mysql -u root -p

DROP USER IF EXISTS 'acore'@'localhost';
CREATE USER 'acore'@'localhost' IDENTIFIED BY 'acore' WITH MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 MAX_UPDATES_PER_HOUR 0;
GRANT ALL PRIVILEGES ON * . * TO 'acore'@'localhost' WITH GRANT OPTION;
CREATE DATABASE `acore_world` DEFAULT CHARACTER SET UTF8MB4 COLLATE utf8mb4_general_ci;
CREATE DATABASE `acore_characters` DEFAULT CHARACTER SET UTF8MB4 COLLATE utf8mb4_general_ci;
CREATE DATABASE `acore_auth` DEFAULT CHARACTER SET UTF8MB4 COLLATE utf8mb4_general_ci;
GRANT ALL PRIVILEGES ON `acore_world` . * TO 'acore'@'localhost' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON `acore_characters` . * TO 'acore'@'localhost' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON `acore_auth` . * TO 'acore'@'localhost' WITH GRANT OPTION;

exit


sudo /home/paul/azeroth-server/bin/authserver
sudo /home/paul/azeroth-server/bin/worldserver
rektbyfaith
02-13-2024, 11:48 PM #3

Archived author: Paul • Posted: 2024-02-13T23:48:25.095000+00:00
Original source

nano /home/paul/azeroth-server/etc/worldserver.conf #change dir data

sudo systemctl status mariadb.service

sudo mysql_secure_installation

[First option leave blank and hit enter]
[N to switch to unix_socket authentication]
[Y to change the root password]
[Y to remove anonymous users]
[Y or N to disallow root login remotely]
[Y to remove test DB]
[Y to reload privilege tables now]


sudo mysql -u root -p

DROP USER IF EXISTS 'acore'@'localhost';
CREATE USER 'acore'@'localhost' IDENTIFIED BY 'acore' WITH MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 MAX_UPDATES_PER_HOUR 0;
GRANT ALL PRIVILEGES ON * . * TO 'acore'@'localhost' WITH GRANT OPTION;
CREATE DATABASE `acore_world` DEFAULT CHARACTER SET UTF8MB4 COLLATE utf8mb4_general_ci;
CREATE DATABASE `acore_characters` DEFAULT CHARACTER SET UTF8MB4 COLLATE utf8mb4_general_ci;
CREATE DATABASE `acore_auth` DEFAULT CHARACTER SET UTF8MB4 COLLATE utf8mb4_general_ci;
GRANT ALL PRIVILEGES ON `acore_world` . * TO 'acore'@'localhost' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON `acore_characters` . * TO 'acore'@'localhost' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON `acore_auth` . * TO 'acore'@'localhost' WITH GRANT OPTION;

exit


sudo /home/paul/azeroth-server/bin/authserver
sudo /home/paul/azeroth-server/bin/worldserver

rektbyfaith
Administrator
0
02-13-2024, 11:49 PM
#4
Archived author: Paul • Posted: 2024-02-13T23:49:33.137000+00:00
Original source

I never really play wow before and i wanna discover this amazing game so if someone can help me i would be grateful ❤️
rektbyfaith
02-13-2024, 11:49 PM #4

Archived author: Paul • Posted: 2024-02-13T23:49:33.137000+00:00
Original source

I never really play wow before and i wanna discover this amazing game so if someone can help me i would be grateful ❤️

Recently Browsing
 1 Guest(s)
Recently Browsing
 1 Guest(s)