- problem display:

Enter MySQL from the command line
start MySQL service:
net start MySQL
login MySQL:
MySQL - U root - P password
View user information:
select host, user, plugin, authentication_ string from mysql.user; Code>
modify user password: OL>
ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY '123456';
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '123456';
Connection successful