- Install MySQL / MariaDB
- Run following commands to create user and database:
CREATE DATABASE ttt;
CREATE USER 'lkw'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON ttt.* TO 'lkw'@'localhost';
FLUSH PRIVILEGES;
Port: 3306
Database Name: ttt
Username: lkw
Password: password