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
Table of contents 01. Use useState when render is...
/etc/fstab Automatically mount partitions/disks, ...
Block-level element features : •Always occupies a ...
I accidentally discovered a great artificial inte...
Due to some of its own characteristics (locking t...
This article example shares the specific code of ...
Write at the beginning This article only covers E...
Table of contents Preface: Specific operations St...
As a powerful editor with rich options, Vim is lo...
Prepare the ingredients as shown above (ps: hadoo...
1.html <div class="loginbody"> &l...
If you are using the latest Ubuntu Server version...
This article shares the specific code of js to ac...
public function json_product_list($where, $order)...
1. First, prepare VS2019 and MySQL database. Both...