How do I set up XASECO2 in my dedicated server
Posted: 28 Feb 2014, 00:58
Hey I just opened a Trackmania 2 Stadium server for me and my friends and it works perfectly fine for now (the guide I use: http://www.gamers.org/tm2/quickstart.html#xaseco2). Now, I try to follow the XASECO2 set up guide, but I really don't understand the "MySLQ" database creation part, can somebody explain to me or link me a guide on how to make a database for XASECO2 and wich "MySLQ" software to install, please. Also I'm new to the MySLQ set up
.
This is the step I don't get.

This is the step I don't get.
1. Create the XASECO2 database in MySQL (default "xaseco2" but any other name is okay too):
CREATE DATABASE xaseco2;
Also create a separate user (e.g. "tm2") in MySQL with a password, and grant this user all rights to the "xaseco2" database. The basic MySQL commands are:
CREATE USER 'tm2'@'localhost';
SET PASSWORD FOR 'tm2'@'localhost' = password('password');
GRANT all ON xaseco2.* TO 'tm2'@'localhost';
2. Login as (or switch to) user "tm2" so that all files created down the road receive the correct ownership and permissions.