What to do if you forget the initial password of MySQL on MAC

What to do if you forget the initial password of MySQL on MAC

The solution to forgetting the initial password of MySQL under MAC is shared with you for your reference. The specific content is as follows

After installing the MySQL dmg from the official website.

1 Set up mysql command

From the terminal, type

mysql --version

If the version number is displayed, it is normal; if it shows command not found, follow the code below to link the installation path

cd /usr/local/bin/
sudo ln -fs /usr/local/mysql/bin/mysql mysql

2. Shut down the mysql service

sudo /usr/local/mysql/support-files/mysql.server stop

3 Start mysql in safe mode

sudo /usr/local/mysql/bin/mysqld_safe --skip-grant-tables

Then open the system preferences, select mysql, and you will find the mysql service and restart it.

4 Return to the terminal

Command + N to reopen a terminal and enter

mysql -u root

At this time, you can directly enter mysql without a password, and you can modify any password.

5 Change the password in the new terminal

mysql> FLUSH PRIVILEGES;
mysql> SET PASSWORD FOR root@'localhost' = PASSWORD('123');
// You can also modify other passwords // Finally refresh mysql> FLUSH PRIVILEGES;

After that, you can log in to mysql with the new password.

For more information about MySQL password operations, please refer to the topic: MySQL password operations summary for learning.

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:
  • What to do if you forget the initial password when installing MySQL on Mac
  • How to install and modify the initial password of mysql5.7.18 under Centos7.3
  • How to modify the initial password of a user in mysql5.7
  • What to do if you forget the initial password of MySQL on MAC
  • A simple and effective solution to forget the initial password when installing MySQL

<<:  Vue implements the shake function (compatible with ios13.3 and above)

>>:  How to handle images in Vue forms

Recommend

MySQL 8.0.23 Major Updates (New Features)

Author: Guan Changlong is a DBA in the Delivery S...

How to invert the implementation of a Bezier curve in CSS

First, let’s take a look at a CSS carousel animat...

In-depth understanding of umask in new linux file permission settings

Preface The origin is a question 1: If your umask...

How to export and import .sql files under Linux command

This article describes how to export and import ....

How to make ApacheBench support multi-url

Since the standard ab only supports stress testin...

Summary of Vue's cross-domain problem handling and solutions

When you send a network request, the following sa...

Complete steps to install MySQL 8.0.x on Linux

MySQL Introduction to MySQL MySQL was originally ...

Several ways to connect tables in MySQL

The connection method in MySQL table is actually ...

Super detailed MySQL usage specification sharing

Recently, there have been many database-related o...

Solution to VMware virtual machine no network

Table of contents 1. Problem Description 2. Probl...

Nginx one domain name to access multiple projects method example

Background Recently, I encountered such a problem...

MySQL query optimization using custom variables

Table of contents Optimizing sorting queries Avoi...

Vue project realizes login and registration effect

This article example shares the specific code of ...

js to realize the mouse following game

This article shares the specific code of js to im...

Hyperlink icon specifications: improve article readability

1. What is the hyperlink icon specification ?<...