In this video you will learn how to connect mysql database if you are facing error in order to connection the database then you are on the right track follow the video and connect your mysql database with mysql workbench
mysql command to fix db connection :
1. check if it is sha2_password: SELECT Host, User, plugin FROM mysql.user;
2. change it to your regular password : ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'Your password';
FLUSH PRIVILEGES;