I reinstalled the computer and installed the latest version of MySQL database. As a result, Navicat reported error 1251 when connecting to Mysql, and sqlyog reported error 2058. However, when I entered MySQL with the window command, the account and password were correct. I checked online and found that the reason for this is that the encryption rule in versions before mysql8 is mysql_native_password, while after mysql8, the encryption rule is caching_sha2_password. There are two ways to solve the problem. One is to upgrade the navicat driver; the other is to restore the mysql user login password encryption rule to mysql_native_password. I often use the second method: ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password'; #Modify encryption rules ALTER USER 'root'@'localhost' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER; #Update the user's password FLUSH PRIVILEGES; #Refresh permissions I see many people just copy the command directly, which is wrong.
So, the problem is solved. The above is the detailed content on how to solve the 1251 error when establishing a connection between MySQL and Navicat. For more information, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: How to automatically backup the script for Linux servers (mysql, attachment backup)
>>: Vue implements carousel animation
Not only does it reduce the cost of website develo...
Before talking about OO, design patterns, and the ...
Table of contents 1. Open source warehouse manage...
1. Purpose: Make the code easier to maintain and ...
When using Maven to manage projects, how to uploa...
Front-end technology layer (The picture is a bit e...
Two parameters of Mysql paging select * from user...
Problem: The MySQL database crashed unexpectedly ...
Table of contents Preface Simulating data Merged ...
MySQL is the most popular relational database man...
Let’s not start with the introduction and get str...
1. Add a user . First, use the adduser command to...
Preface In Java programming, most applications ar...
1. What is mycat A completely open source large d...
Where is my hometown when I look northwest? How m...