mistake The following error occurs when connecting to MySQL using Navicat Premium: reason The encryption rule in versions before mysql8 is mysql_native_password, and after mysql8, the encryption rule is caching_sha2_password solve To change encryption rules: mysql -uroot -ppassword #Login use mysql; #Select database # For remote connection, please replace 'localhost' with '%' ALTER USER 'root'@'localhost' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER; #Change encryption methodALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password'; #Update user passwordFLUSH PRIVILEGES; #Refresh permissions Enter password This is the end of this article about Navicat connecting to MySQL8.0.11 with error 2059. For more information about Navicat connecting to MySQL, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: How to deploy zabbix_agent in docker
>>: Two methods of implementing automatic paging in Vue page printing
Quickstart Guide The Foreman installer is a colle...
If prompted to enter a key, select [I don’t have ...
mysql-5.7.9 finally provides shutdown syntax: Pre...
When making a website, I found that video files, s...
What is MIME TYPE? 1. First, we need to understand...
Canal is an open source project under Alibaba, de...
1. How do I remove the blank space of a few pixels...
Sometimes, we want the text boxes in the form to b...
Introduction to Angular Angular is an open source...
Preface Recently, I was analyzing the startup pro...
Using fonts on the Web is both a fundamental skill...
This article shares the installation of MySQL 5.7...
The company had a well-configured server that was...
Inline format <colgroup>...</colgroup>...
Table of contents Difference between MVC and MVVM...