Create or edit users password ALTER USER 'username'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password'; CREATE USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';
Where username is the username and password is the password for that user.