MySQL database is supported by the graphical installer. If you wish to use this method, you can stop here and go to the installer.
Connect to your mysql-server.
# mysql -u root -h localhost -p
Create database user.
CREATE USER 'database_user'@'localhost' IDENTIFIED BY 'database_password';
Create database to store esrender's data.
CREATE DATABASE `database_name` CHARACTER SET "utf8" COLLATE "utf8_general_ci";
Assign required privileges.
GRANT ALL ON `database_name`.* TO 'database_user'@'localhost';
Tell mysql to re-read its privilege-settings.
FLUSH PRIVILEGES;
You have now created a database and user-account for esrender. Please take note of the specific names and passwords as they are required by the graphical installer.