Given Allaince Auth docs state user setup should be as per this:
CREATE USER 'allianceserver'@'localhost' IDENTIFIED BY 'PASSWORD';
CREATE DATABASE alliance_auth CHARACTER SET utf8mb4;
GRANT ALL PRIVILEGES ON alliance_auth . * TO 'allianceserver'@'localhost';
Your sql file is this :
CREATE USER 'aauth'@'localhost' IDENTIFIED BY 'PASSWORD';
CREATE DATABASE aauth CHARACTER SET utf8mb4;
GRANT ALL PRIVILEGES ON alliance_auth . * TO 'aauth'@'localhost';
that last line should read
GRANT ALL PRIVILEGES ON aauth . * TO 'aauth'@'localhost';
Given Allaince Auth docs state user setup should be as per this:
Your sql file is this :
that last line should read
GRANT ALL PRIVILEGES ON aauth . * TO 'aauth'@'localhost';