MySQL initialization password operation under Mac

MySQL initialization password operation under Mac

A simple record of the database startup problems encountered by individuals when operating the database on Mac

1. Apple->System Preferences->Click MySQL at the bottom. In the pop-up page, turn off the MySQL service (click Stop MySQL Server)

2. Enter the terminal and enter: 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)

3. Enter the command ./mysql

After pressing Enter, enter the command FLUSH PRIVILEGES;

After pressing Enter, enter the command SET PASSWORD FOR 'root'@'localhost' = PASSWORD('你的新密碼');

The above is the MySQL initialization password operation under Mac 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 to initialize the password after the first successful installation of MySQL

<<:  How to install JDK8 on Windows

>>:  Node.js file copying, folder creation and other related operations

Recommend

Detailed explanation of JavaScript array deduplication

Table of contents 1. Array deduplication 2. Dedup...

What to do if the auto-increment primary key in MySQL is used up

In the interview, you should have experienced the...

Let's talk about the difference between containers and images in Docker

What is a mirror? An image can be seen as a file ...

JavaScript type detection method example tutorial

Preface JavaScript is one of the widely used lang...

How to view the network routing table in Ubuntu

What are Routing and Routing Table in Linux? The ...

Why is the MySQL auto-increment primary key not continuous?

Table of contents 1. Introduction 2. Self-increme...

Summary of the 10 most frequently asked questions in Linux interviews

Preface If you are going to interview for a Linux...

mySQL server connection, disconnection and cmd operation

Use the mysql command to connect to the MySQL ser...

Commonly used English fonts for web page creation

Arial Arial is a sans-serif TrueType font distribu...

Three ways to communicate between React components (simple and easy to use)

Table of contents 1. Parent-child component commu...

In-depth analysis of nginx+php-fpm service HTTP status code 502

One of our web projects has seen an increase in t...

Analysis of the process of deploying pure HTML files in Tomcat and WebLogic

1. First, the pure HTML file must have an entry i...

Example of implementing the Graphql interface in Vue

Note: This article is about the basic knowledge p...

Eight ways to implement communication in Vue

Table of contents 1. Component Communication 1. P...