MySQL 8.0 error The server requested authentication method unknown to the client solution

MySQL 8.0 error The server requested authentication method unknown to the client solution

After installing the latest version 8.0.11 of mysql, create a user and authorize it. The authorized user is prompted to connect to the database

The server requested authentication method unknown to the client

After consulting some relevant information, I found that it was caused by the inconsistency of the unlocking mechanism of the new version of MySQL account password.

Solution:

Delete the created users and authorizations.

  1. Find the mysql configuration file and add
  2. default_authentication_plugin=mysql_native_password

Change to the original authentication method, then create a new user and authorize

or

mysql -uroot -p
use mysql;
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'your password';

The above is the solution to this error. If you have a better solution, please leave a message on the 123WORDPRESS.COM WeChat public account. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • Python uses QQ mailbox to send emails and reports smtplib.SMTPAuthenticationError
  • Detailed explanation of the use of Django authentication system
  • Java Jedis NOAUTH Authentication required problem solution
  • How to solve the NOAUTH Authentication required exception of redis
  • Springboot+Oauth2 implements custom AuthenticationManager and authentication path
  • HTTP Basic Authentication JAVA Example Code
  • After form authentication is passed, you can only use FormsAuthentication.RedirectFromLoginPage
  • How does Spring Security obtain user information based on Authentication?

<<:  How to use echarts to visualize components in Vue

>>:  Detailed explanation of commands to view linux files

Recommend

Example of how to upload a Docker image to a private repository

The image can be easily pushed directly to the Do...

Problems encountered in using MySQL

Here are some problems encountered in the use of ...

jQuery achieves seamless scrolling of tables

This article example shares the specific code of ...

How to implement Vue binding class and binding inline style

Table of contents Binding Class Binding inline st...

ElementUI implements cascading selector

This article example shares the specific code of ...

CSS to achieve text on the background image

Effect: <div class="imgs"> <!-...

Get the calculated style in the CSS element (after cascading/final style)

To obtain the calculated style in a CSS element (t...

Implementation of building Kubernetes cluster with VirtualBox+Ubuntu16

Table of contents About Kubernetes Basic environm...

Detailed explanation of meta tags and usage in html

I won’t waste any more time talking nonsense, let...

HTML validate HTML validation

HTML validate refers to HTML validation. It is the...

Remote Desktop Connection between Windows and Linux

When it comes to remote desktop connection to Lin...

Detailed explanation of CocosCreator project structure mechanism

Table of contents 1. Project folder structure 1. ...

Detailed explanation of how Node.js handles ES6 modules

Table of contents 1. Differences between the two ...

Detailed explanation of the basic implementation principle of MySQL DISTINCT

Preface DISTINCT is actually very similar to the ...

Nginx configuration to achieve multiple server load balancing

Nginx load balancing server: IP: 192.168.0.4 (Ngi...