
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.