How to retrieve password for mysql 8.0.22 on Mac

How to retrieve password for mysql 8.0.22 on Mac

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
2. The authentication_string field can only contain the 41-bit string password encrypted by MySQL. Others will be reported as format errors. This means that md5('new password') cannot play the role of the original password('new password')
3. The default authentication plugin for MySQL 8.0 database is caching_sha2_password , including the one you use to initialize the database using mysqladmin. So if you want your normal MySQL connection client to connect to the MySQL 8.0 database, you need to modify the default_authentication_plugin , which is the plugin column in mysql.user.

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
2.Terminal
3.sudo -i
4.cd /usr/local/mysql/bin/
5../mysqld_safe --skip-grant-tables &
6.return (click the return key on your keyboard)
7. At this time, MySQL Server becomes running again. You can use ps -ef | grep -v 'grep' | grep 'mysql' to view its PID and the PID of mysqld_safe that started it.
8../mysql

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)
10. First set the authentication_string of root in the user table to an empty string, then use ALTER user to reset the password
11. Exit MySQL, kill mysqld_safe with kill -9, kill mysql, and restart
12. Log in normally with the new password

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:
  • Introduction to some operations of MySQL secure password input
  • How to change the secure processing password in MySQL 5.6
  • Quick solution for forgetting MySQL8 password
  • Detailed explanation of MySQL 8.0 password expiration policy
  • How to change the root user's password in MySQL
  • MySQL implements an example method of logging in without a password
  • How to reset the root password in Linux mysql-5.6
  • How to safely shut down MySQL
  • How to gracefully and safely shut down the MySQL process
  • It's the end of the year, is your MySQL password safe?

<<:  Solve the problem that images and other resources are automatically deleted after Tomcat is redeployed

>>:  Several ways to submit HTML forms_PowerNode Java Academy

Recommend

Sending emails in html is easy with Mailto

Recently, I added a click-to-send email function t...

Detailed explanation of routes configuration of Vue-Router

Table of contents introduce Object attributes in ...

Solve the problem of docker log mounting

The key is that the local server does not have wr...

HTML table_Powernode Java Academy

To draw a table in HTML, use the table tag tr me...

Javascript operation mechanism Event Loop

Table of contents 1. Four concepts 1. JavaScript ...

JavaScript Timer Details

Table of contents 1. Brief Introduction 2. setInt...

Detailed explanation of MySQL/Java server support for emoji and problem solving

This article describes the support and problem so...

Solution to MySQL error code 1862 your password has expired

The blogger hasn't used MySQL for a month or ...

Summary of some common uses of refs in React

Table of contents What are Refs 1. String type Re...

Vue uses el-table to dynamically merge columns and rows

This article example shares the specific code of ...

How to use partitioning to optimize MySQL data processing for billions of data

When MySQL queries tens of millions of data, most...