installation guide consists of these three steps:
sudo apt update
sudo apt install mariadb-server
sudo mysql_secure_installation
sudo mysql
MariaDB [(none)]> GRANT ALL ON *.* TO 'admin'@'localhost' IDENTIFIED BY 'password' WITH GRANT OPTION;
MariaDB [(none)]> FLUSH PRIVILEGES;
MariaDB [(none)]> exit