In the last article, I just wrote about installing Mysql, I want to use Navicat to connect, and then I get an error. Record the error here and solve it.
When Navicat connects to MySQL Server8.0 version, Client does not support authentication protocol requested by server appears; the solution is as follows:
The command is as follows:
1.use mysql;
2. alter user’root’@’localhost’ identified with mysql_native_password by’********’;
3. flush privileges;