Mac latest version of MySQL 8.0.22 password recovery Problem description: Yesterday, I suddenly wanted to experience the password change process of the latest version of MySQL on Mac. I changed the plugin by replacing caching_sha2_password with mysql_native_password, and then used UPDATE SET to modify authentication_string. I didn't remember to add the password('new password') function, which led to ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) Cause Analysis: There are several pitfalls in the whole thing: 1. The password() function has been deprecated in MySQL 8.0 Solution: Step 1: Shut down the MySQL server Apple icon in the upper left corner - System Preferences - MySQL - Stop MySQL Server Step 2: Use system administrator privileges to skip MySQL security authentication and force login 1. Command + Space So far, I have successfully logged into MySQL in safe mode. 9. FLUSH PRIVILEGES; (This statement extracts the user information of the current user table and the privilege table permissions into memory to ensure that the permissions can be successfully obtained to modify the user table) USE mysql; UPDATE user SET authentication_string = '' WHERE User = 'root'; ALTER user 'root'@'localhost' IDENTIFIED BY '123456'; 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:
|
>>: Several ways to submit HTML forms_PowerNode Java Academy
Recently, I added a click-to-send email function t...
Table of contents introduce Object attributes in ...
The road ahead is always so difficult and full of...
The key is that the local server does not have wr...
For example: <link rel="stylesheet" h...
Install crontab yum install crontabs CentOS 7 com...
To draw a table in HTML, use the table tag tr me...
Table of contents 1. Four concepts 1. JavaScript ...
Table of contents 1. Brief Introduction 2. setInt...
This article describes the support and problem so...
The blogger hasn't used MySQL for a month or ...
Table of contents What are Refs 1. String type Re...
This article example shares the specific code of ...
When MySQL queries tens of millions of data, most...
Earlier we talked about how to make a square with...