We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
First, update the system by following commands
sudo apt-get update
sudo apt-get upgrade
Install MariaDB
sudo apt install mariadb-server mariadb-client
sudo mysql_secure_installation
sudo mysql
GRANT ALL ON *.* TO 'admin'@'localhost' IDENTIFIED BY 'password' WITH GRANT OPTION;
FLUSH PRIVILEGES;
exit;