2058 to address problems arise connected mysql yog

Self-test can be a perfect solution to the problem:

In order to facilitate installation view, I downloaded sqlyog tool to connect mysql

Configure the new connection error: error number 2058, analysis mysql password encryption method is changed.

Solution: Under windows cmd Log in Log mysql -u root -p your mysql database, and then execute this SQL:

 ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';

#password is the root password of your own set

SQLyog then reconfigure the connection, you can connect a success, OK. 
----------------
Disclaimer: This article is CSDN blogger "jared456 'original article, follow the CC 4.0 BY-SA copyright agreement, reproduced, please attach the original source link and this statement. .
Original link: https: //blog.csdn.net/jared456/article/details/80380853

Guess you like

Origin www.cnblogs.com/tzy123abd/p/11442232.html