Preface After installing MySQL and Navicat, when connecting, it reports ERROR 2059 (HY000): Authentication plugin 'caching_sha2_password' cannot be loaded: ÕÒ²»µ½Ö¸¶¨µÄÄ£¿ é¡ £. I initially thought it was because I didn't set a password. The password was set in the command line mode. It is worth mentioning that after logging in as root, the password should be set password = 'your password' instead of password = password or something like that. When you see that the error is syntax, you should consider whether there is a problem with this code. Here is a special reminder: localhost in any remote (virtual machine, tencent ali server or similar) command should be replaced with '%' text 1.2059 Authentication plugin When I reconnected, the problem persisted. This sentence means troubleshooting the authentication plug-in: SELECT `user`, `host`, `authentication_string`, `plugin` FROM mysql.user; Conduct investigation Change the root account password verification plug-in type to mysql_native_password. This is a problem after mysql8: ALTER USER 'root'@'localhost' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER; #Modify the encryption rule. password is your own password, and root is also the login account, the same below. ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password'; #Update the user's password FLUSH PRIVILEGES; #Refresh permissions SELECT `user`, `host`, `authentication_string`, `plugin` FROM mysql.user; This problem is solved. ------------------------------------Dividing line---------------------------------------------------------------------- ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'password'; #Update the user's password All remote localhosts must be replaced with %. 2019/9/11 ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'password'; #Update the user's password Problem solved. This is the end of this article about MySQL installation Navicat, 2059 appears, Authentication plugin and local connection virtual machine docker, remote connection server. For more related MySQL installation Navicat report 2059 content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: The complete implementation process of Sudoku using JavaScript
>>: SVN installation and basic operation (graphic tutorial)
When implementing this function, the method I bor...
Table of contents Preface Introduction ngram full...
Basic syntax The use of text-overflow requires th...
Summarize Global environment ➡️ window Normal fun...
Pull the image docker pull mysql View the complet...
1. MacVlan There are many solutions to achieve cr...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML ...
Because Ubuntu 20.04 manages the network through ...
Preface: As far as I know, currently CSS can only...
Implementation ideas The outermost is a big circl...
Table of contents 1. Function Introduction 2. Key...
On CentOS 7, when we map the host port to the con...
Table of contents 1. Relationship between parent ...
Table of contents Preface 1. Object.freeze() 2. O...
CSS Position The position attribute specifies the...