Solve the 1251 error when establishing a connection between mysql and navicat

Solve the 1251 error when establishing a connection between mysql and navicat

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.

1564815512720381.png

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.

  • 'root' is your own username
  • 'localhost' refers to the IP opened by the user. It can be 'localhost' (accessible only by this local machine, equivalent to 127.0.0.1), it can be a specific '*.*.*.*' (a specific IP), or '%' (accessible by all IPs)
  • 'password' is the user password you wish to use

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:
  • Navicat connection MySQL error description analysis
  • Solve the problem of Navicat for MySQL reporting 2005 error when connecting to MySQL
  • Common errors and solutions for connecting Navicat to virtual machine MySQL
  • Navicat connects to MySQL8.0.11 and an error 2059 occurs
  • When Navicat connects to MySQL, it reports 10060, 1045 errors and the location of my.ini
  • Solve the 3680 error when creating a new database in Navicat on Mac

<<:  How to automatically backup the script for Linux servers (mysql, attachment backup)

>>:  Vue implements carousel animation

Recommend

HTML dl, dt, dd tags to create a table vs. Table creation table

Not only does it reduce the cost of website develo...

Copy and paste is the enemy of packaging

Before talking about OO, design patterns, and the ...

How to build a private Docker repository using Harbor

Table of contents 1. Open source warehouse manage...

Vuex modularization and namespaced example demonstration

1. Purpose: Make the code easier to maintain and ...

How to upload the jar package to nexus via the web page

When using Maven to manage projects, how to uploa...

CSS and HTML and front-end technology layer diagram

Front-end technology layer (The picture is a bit e...

Simple example of limit parameter of mysql paging

Two parameters of Mysql paging select * from user...

JS uses map to integrate double arrays

Table of contents Preface Simulating data Merged ...

MySQL 5.7.24 installation and configuration method graphic tutorial

MySQL is the most popular relational database man...

Three examples of blur background effects using CSS3

Let’s not start with the introduction and get str...

Summary of how to add root permissions to users in Linux

1. Add a user . First, use the adduser command to...

Implementation of Docker building Maven+Tomcat basic image

Preface In Java programming, most applications ar...

A brief introduction to mysql mycat middleware

1. What is mycat A completely open source large d...

Detailed explanation of query examples within subqueries in MySql

Where is my hometown when I look northwest? How m...