[DiscordArchive] In the 2nd and 3rd code examples of that link, can you tell me what to put for "mydb" at the end?
[DiscordArchive] In the 2nd and 3rd code examples of that link, can you tell me what to put for "mydb" at the end?
Archived author: ritzmenardi • Posted: 2023-06-08T19:09:19.356000+00:00
Original source
In the 2nd and 3rd code examples of that link, can you tell me what to put for "mydb" at the end?
Archived author: ritzmenardi • Posted: 2023-06-08T19:23:43.393000+00:00
Original source
Basically I need to know which database to connect to in order to run the setup script that creates the default user so my worldserver and authserver can connect to the database.
I can log in when using sudo but it says (none) for the database - that doesn't seem right to me?
Archived author: DoctorB0NG • Posted: 2023-06-08T19:26:02.841000+00:00
Original source
i'm assuming you're following the classic installation. just connect as root and run https://github.com/azerothcore/azerothco..._mysql.sql like the documentation says
[Embed: azerothcore-wotlk/create_mysql.sql at master · azerothcore/azerothc...]
Complete Open Source and Modular solution for MMO. Contribute to azerothcore/azerothcore-wotlk development by creating an account on GitHub.
https://github.com/azerothcore/azerothco..._mysql.sql
Archived author: DoctorB0NG • Posted: 2023-06-08T19:26:05.837000+00:00
Original source
it will create the databases
Archived author: DoctorB0NG • Posted: 2023-06-08T19:26:21.447000+00:00
Original source
```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;```
Archived author: ritzmenardi • Posted: 2023-06-08T19:29:30.377000+00:00
Original source
Okay I think that worked, thank you ❤️
Archived author: ritzmenardi • Posted: 2023-06-08T19:30:03.748000+00:00
Original source
I didn't realize the setup script created the databases. That makes a lot of sense.