Solution to the problem that the mysql8.0.11 client cannot log in

Solution to the problem that the mysql8.0.11 client cannot log in

This article shares with you the solution to the problem that the mysql8.0.11 client cannot log in, for your reference, the specific content is as follows

The default encryption method of MySQL 8.0.11 is [caching_sha2_password], which is not supported by Navicat for MySQL and Navicat Premium 12 clients.

You can log in to the database server using:

mysql>use mysql; 
mysql> select user, host, plugin, authentication_string from user where user='test';
+------+------+-----------------------+------------------------------------------------------------------------+
| user | host | plugin | authentication_string |
+------+------+-----------------------+------------------------------------------------------------------------+
| test | % | caching_sha2_password | $A$005$7\m5O\%K/Y3'[email protected] |
+------+------+-----------------------+------------------------------------------------------------------------+
1 row in set (0.00 sec)

The client cannot find the caching_sha2_password plugin. You can create a new user to use native encryption or modify

ALTER USER 'test'@'%' IDENTIFIED WITH mysql_native_password BY '123456a?';

Just change your login password at this time.

Wonderful topic sharing: Installation tutorials for different versions of MySQL Installation tutorials for MySQL 5.7 versions Installation tutorials for MySQL 5.6 versions

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Introduction to using the MySQL mysqladmin client
  • How does MySQL connect to the corresponding client process?
  • Solve the problem of MySql client exiting in seconds (my.ini not found)
  • PHP Swoole asynchronous MySQL client implementation example
  • Solve the problem that the Node.js mysql client does not support the authentication protocol
  • Detailed explanation of MySQL/Java server support for emoji and problem solving
  • Getting started with NodeJS server development (Express+MySQL)
  • MySQL connection pool for App server (supports high concurrency)
  • Interpreting MySQL client and server protocols

<<:  ByteDance interview: How to use JS to implement Ajax concurrent request control

>>:  How to check the version of Kali Linux system

Recommend

Use of vuex namespace

Table of contents Since Vuex uses a single state ...

The implementation process of ECharts multi-chart linkage function

When there is a lot of data to be displayed, the ...

Tips for creating two-dimensional arrays in JavaScript

Creation of a two-dimensional array in Js: First ...

CSS Standard: vertical-align property

<br />Original text: http://www.mikkolee.com...

JavaScript Advanced Programming: Variables and Scope

Table of contents 1. Original value and reference...

Ten important questions for learning the basics of Javascript

Table of contents 1. What is Javascript? 2. What ...

The latest 36 high-quality free English fonts shared

01. Infinity Font Download 02. Banda Font Download...

SQL implementation of LeetCode (178. Score ranking)

[LeetCode] 178.Rank Scores Write a SQL query to r...

Deploy Confluence with Docker

1. Environmental requirements 1. Docker 17 and ab...

What are the drawbacks of deploying the database in a Docker container?

Preface Docker has been very popular in the past ...

Install nvidia graphics driver under Ubuntu (simple installation method)

Install the nvidia graphics card driver under Ubu...