Disclaimer: This password reset method can directly reset the password of MySQL installed by Homebrew. For MySQL installed by other methods, you only need to switch to the corresponding installation directory. If you forget your password after installing MySQL for a long time, here is a summary of how to reset the local MySQL Root password when you forget your password. All operations are completed in the Mac Terminal. Stop services and processes: brew services stop mysql Go into the folder: cd /usr/local/opt/mysql/bin Execute unauthorized command (mysql): mysqld_safe --user=mysql --skip-grant-tables --skip-networking & Enter the MySQL command using (mysql): mysql -u root mysql Execute the change password code: UPDATE mysql.user SET authentication_string = PASSWORD('MyNewPass'), password_expired = 'N' WHERE User = 'root' AND Host = 'localhost'; FLUSH PRIVILEGES; quit: Restart: brew services restart mysql mysql.server restart New password login: mysql -u root -p Summarize The above is the tutorial on how to reset the Root password of Mac MySQL introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: Steps for installing MySQL 8.0.16 on Windows and solutions to errors
>>: Docker learning: the specific use of Container containers
This article shares a dynamic loading progress ba...
Use CSS to prevent Lightbox to realize the displa...
The css animation of the rotating flip effect, th...
Preface In the process of developing a mini progr...
I recently wrote a mobile page at work, which was...
Table of contents 1. System Information 2. Shutdo...
This article introduces Nginx from compilation an...
MySQL 5.5 installation and configuration method g...
I believe that people who have experience with Re...
This article mainly introduces the analysis of th...
Table of contents Configuration parsing Service C...
Preface Recently, I took over a client's nati...
Table of contents Mixins implementation Hook func...
This article uses an example to illustrate the us...
Detailed explanation of JDBC database link and re...