Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 444 Bytes

database.md

File metadata and controls

22 lines (16 loc) · 444 Bytes

Database

Setup

  • 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;

Configuration

Port: 3306
Database Name: ttt
Username: lkw
Password: password

See application.properties