References:
http://containertutorials.com
https://linuxhint.com/lamp_server_docker/
sudo apt-get purge mysql*
sudo apt-get autoremove
sudo apt-get autoclean
sudo apt-get distracted-upgrade
Great link allowed you to find the old abandoned application by window: https://winworldpc.com/
1. first sudo mysql
sudo mysql -u root
2. check present db
select user, host from mysql.user
3. delete current 'root'@'localhost'
drop user 'root'@'localhost';
4. recreate root
create user 'root'@'localhost' identified by '';
5 Give permission
grant all privileges on *.* to 'root'@'localhost' with grant option;
flush privileges;