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:
|
<<: ByteDance interview: How to use JS to implement Ajax concurrent request control
>>: How to check the version of Kali Linux system
Table of contents Single-machine deployment Onlin...
illustrate: Using mysqldump –all-databases will e...
Table of contents 1. What is Pinia? 2. Pinia is e...
This article example shares the specific code of ...
1. What is a servlet 1.1. Explain in official wor...
Preface In the process of developing a mini progr...
Ubuntu's own source is from China, so the dow...
Get the current date + time (date + time) functio...
Preface I believe that everyone has been developi...
sudo configuration file The default configuration...
Among classic color combinations, probably no one...
Table of contents uni-app Introduction HTML part ...
Preface: It’s the end of the year, isn’t it time ...
This article shares with you the graphic tutorial...
Readonly and Disabled both prevent users from cha...