Problems and solutions encountered when connecting node to mysql database

Problems and solutions encountered when connecting node to mysql database

I installed a new version of MySQL (8.0.21) today, and an error occurred when connecting to the database using the node framework:

Client does not support authentication protocol requested by server; consider upgrading MySQL client

The reason is that MySQL 8.0 has changed the encryption plug-in, but the database management client still uses the encryption method of the old version. This is mainly due to the configuration process of the Authentication Method during the installation of MySQL 8.0. There are different encryption methods, so if you choose strong encryption (which should be the default), the above error problem will occur. In this case, just change the encryption method to keep the encryption method of the old version and it will be ok.

1. Windows users use the terminal to enter the database and enter:

alter user 'root'@'%' identified with mysql_native_password by '密码' // Reset password flush privileges // Refresh privilege configuration

It can be solved!

2. Mac users, please see here

I also used the default strong encryption method during the installation process. The solution is also very simple. First, open系統偏好設置

insert image description here

Click MySQL to enter the database

insert image description here

After entering, I found an interface like this. You can see that the database uses strong encryption.

insert image description here

Then we select Legacy Password below and set a password

insert image description here

Click OK and finally restart the database!

Because I changed to Mac, I can't personally follow the steps on Windows. Please forgive me if there are any incomplete details. You can also search for other tutorials on your own!

Summarize

This is the end of this article about the problems and solutions encountered when connecting node to mysql database. For more relevant content about connecting node to mysql database, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Solution to the garbled problem of inserting mysql database with nodejs and C language
  • Simple encapsulation example of nodejs connecting to mysql database - mysql module
  • MySQL database configuration and connection under node.js platform
  • Detailed explanation of node operation mysql database instance
  • Node.js database operation: querying MySQL database (Part 2)
  • Node.js operates mysql database to add, delete, modify and query

<<:  Nginx domain forwarding usage scenario code example

>>:  What does the legendary VUE syntax sugar do?

Recommend

Use HTML to write a simple email template

Today, I want to write about a "low-tech&quo...

Detailed explanation of MySQL index selection and optimization

Table of contents Index Model B+Tree Index select...

Detailed explanation of where the image pulled by docker is stored

20200804Addendum: The article may be incorrect. Y...

MYSQL master-slave replication knowledge points summary

An optimization solution when a single MYSQL serv...

Detailed explanation of MySQL cumulative calculation implementation method

Table of contents Preface Demand Analysis Mysql u...

Solution to the problem of mysql master-slave switch canal

After configuring VIP, the error message that app...

Implementation script for scheduled database backup in Linux

Table of contents Scenario: The server database n...

Simple implementation of mini-vue rendering

Table of contents Preface Target first step: Step...

Nginx domain forwarding usage scenario code example

Scenario 1: Due to server restrictions, only one ...

js array fill() filling method

Table of contents 1. fill() syntax 2. Use of fill...

Mysql | Detailed explanation of fuzzy query using wildcards (like,%,_)

Wildcard categories: %Percent wildcard: indicates...

Ubuntu installation Matlab2020b detailed tutorial and resources

Table of contents 1. Resource files 2. Installati...

Docker advanced method of rapid expansion

1. Command method Run the nginx service in the cr...

HTML+VUE paging to achieve cool IoT large screen function

Effect demo.html <html> <head> <me...

Detailed tutorial on docker-compose deployment and configuration of Jenkins

Docker-compose deployment configuration jenkins 1...