[DiscordArchive] /* SQL Error (1007): Can't create database 'acore_world'; database exists */ Where could i delete th
[DiscordArchive] /* SQL Error (1007): Can't create database 'acore_world'; database exists */ Where could i delete th
Archived author: Deleted User • Posted: 2023-03-07T11:33:46.544000+00:00
Original source
/* SQL Error (1007): Can't create database 'acore_world'; database exists */ Where could i delete the previous database ?
Archived author: Rymercyble • Posted: 2023-03-07T11:34:30.603000+00:00
Original source
either in terminal or using gui client
Archived author: Deleted User • Posted: 2023-03-07T11:36:16.142000+00:00
Original source
terminal would be Mysql CMD ?
Archived author: Rymercyble • Posted: 2023-03-07T11:37:53.789000+00:00
Original source
terminal/cli/cmd and other names that window where u type commands one of which is access to mysql
Archived author: Deleted User • Posted: 2023-03-07T11:39:27.919000+00:00
Original source
Thanks. I´ll google on how to delete the existing database. i think..
Archived author: Rymercyble • Posted: 2023-03-07T11:40:08.545000+00:00
Original source
if u are not experienced it would be probably easier to use some client like heidi
Archived author: Deleted User • Posted: 2023-03-07T11:40:29.592000+00:00
Original source
I am in HeidiSQL. thats the place the error popped up
Archived author: Deleted User • Posted: 2023-03-07T11:40:43.425000+00:00
Original source
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;
Upon trying to do this.
Archived author: Rymercyble • Posted: 2023-03-07T11:41:23.499000+00:00
Original source
on left side u should see all databases u got
Archived author: Deleted User • Posted: 2023-03-07T11:41:29.062000+00:00
Original source
Should mention i did same stuff before without errors. Got the game even booted.