sudo apt update sudo apt upgrade
sudo apt install mysql-server
sudo apt install mysql-server #To do the high security provide all answers to yes
sudo service mysql start
sudo mysql
SELECT user,authentication_string,plugin,host FROM mysql.user;
CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost'; FLUSH PRIVILEGES;
mysql -u username -p