apt update
apt install mysql-server
systemctl status mysql
mysql
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'YOUR_PASSWORD';
mysql_secure_installation
create user 'username'@'%' identified by 'very_strong_passwd';
grant all privileges on *.* to 'username'@'localhost' identified by 'very_strong_passwd'