[DiscordArchive] Did you create the user and the database by hand?
[DiscordArchive] Did you create the user and the database by hand?
Archived author: Ryan Turner • Posted: 2025-08-14T14:06:26.977000+00:00
Original source
Did you create the user and the database by hand?
Archived author: Ryan Turner • Posted: 2025-08-14T14:06:51.102000+00:00
Original source
there's a specific file (taht you run on your root/super user, the one you used/created when you installed mysql)
Archived author: Himbo Jones • Posted: 2025-08-14T14:07:40.026000+00:00
Original source
What I did was go through the MySQL Command Line client and input all this:
```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;
-- Create databases for AzerothCore, only if they do not exist
CREATE DATABASE IF NOT EXISTS `acore_world` DEFAULT CHARACTER SET UTF8MB4 COLLATE utf8mb4_unicode_ci;
CREATE DATABASE IF NOT EXISTS `acore_characters` DEFAULT CHARACTER SET UTF8MB4 COLLATE utf8mb4_unicode_ci;
CREATE DATABASE IF NOT EXISTS `acore_auth` DEFAULT CHARACTER SET UTF8MB4 COLLATE utf8mb4_unicode_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;```
Archived author: Himbo Jones • Posted: 2025-08-14T14:07:50.460000+00:00
Original source
from the tutorial
Archived author: Mithria • Posted: 2025-08-14T14:09:03.557000+00:00
Original source
whats the full path of where your cloned azerothcore code is located
Archived author: Himbo Jones • Posted: 2025-08-14T14:10:06.254000+00:00
Original source
C:\Private Servers\World of Warcraft\AzerothCore WotLK (Player Bots)
and then the file azerothcore-wotlk-playerbots is there
Archived author: Mithria • Posted: 2025-08-14T14:10:56.935000+00:00
Original source
hmmm