Solution to forgetting the MYSQL database password under MAC

Solution to forgetting the MYSQL database password under MAC

Quick solution for forgetting MYSQL database password under Mac operating system

1. In System Preferences, stop the MYSQL service.

2. cd /usr/local/mysql-...../bin

sudo ./mysqld_safe --skip-grant-tables

3. Log in to MySQL;

mysql

4. Set the root user's password to blank;

mysql> update mysql.user set password='' whereUser='root'; 
mysql> flush privileges; 
mysql> quit

5. Restart the MySQL service.

6. Add password mysql> mysqladmin -u root -p password 123 Change the password to 123

Another method from netizens:

step1:

Shut down the MySQL service: Apple->System Preferences->Click MySQL at the bottom. In the pop-up page, shut down the MySQL service (click Stop MySQL Server).

step2:

Enter the terminal and type: cd /usr/local/mysql/bin/
After pressing Enter, log in with administrator privileges sudo su
After pressing Enter, enter the following command to disable the mysql authentication function./mysqld_safe --skip-grant-tables &
After pressing Enter, MySQL will automatically restart (the status of MySQL in the preferences will become running)

step3:

Enter the command ./mysql
After pressing Enter, enter the command FLUSH PRIVILEGES;
After pressing Enter, enter the command SET PASSWORD FOR 'root'@'localhost' = PASSWORD('your new password');

After completing the above steps, the password has been changed successfully. Now you can use the newly set password to log in to MySQL.

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:
  • Teach you how to install mysql database on Mac
  • Solution to the Chinese garbled code problem in Mac Mysql database
  • Sharing of methods of operating MySQL database with PHP under Mac environment
  • Graphic tutorial on installing MySQL database and configuring environment variables on Mac

<<:  Summary of event handling in Vue.js front-end framework

>>:  Nginx reverse proxy configuration removes prefix

Recommend

Detailed explanation of MySQL Explain

In daily work, we sometimes run slow queries to r...

Detailed explanation of Mysql's method of optimizing order by statement

In this article, we will learn about the optimiza...

Common methods of Vue componentization: component value transfer and communication

Related knowledge points Passing values ​​from pa...

Detailed tutorial for downloading, installing and configuring MySQL 5.7.27

Table of contents 1. Download steps 2. Configure ...

React internationalization react-intl usage

How to achieve internationalization in React? The...

Implementation of modifying configuration files in Docker container

1. Enter the container docker run [option] image ...

How to smoothly upgrade nginx after compiling and installing nginx

After nginx is compiled and installed and used fo...

Docker container exits after running (how to keep running)

Phenomenon Start the Docker container docker run ...

Use nginx to dynamically convert image sizes to generate thumbnails

The Nginx ngx_http_image_filter_module module (ng...

Installation of CUDA10.0 and problems in Ubuntu

The correspondence between tensorflow version and...

Keepalived implements Nginx load balancing and high availability sample code

Chapter 1: Introduction to keepalived The purpose...

Solution to invalid Nginx cross-domain setting Access-Control-Allow-Origin

nginx version 1.11.3 Using the following configur...