Go to MariaDB download page.
Then search for MySQL Client and run it.
sudo apt install mysql-server
sudo mysql_secure_installation
sudo mysql
Create user and database for GamaSenseIt.
CREATE USER 'gamasenseit'@'localhost' IDENTIFIED BY 'gamasenseit';
CREATE OR REPLACE DATABASE gamasenseit;
GRANT ALL PRIVILEGES ON gamasenseit.* TO 'gamasenseit'@'localhost';
FLUSH PRIVILEGES;
\q
Then try to connect to the database as gamasenseit.
mysql[.exe] -u gamasenseit -pgamasenseit -h localhost -P 3306 -D gamasenseit [--skip-ssl]
Set spring.sql.init.mode=always
in application.properties
for create tables.