How to change the root password of Mysql5.7.10 on MAC

How to change the root password of Mysql5.7.10 on MAC

First, start MySQL in skip-grant-tables mode: mysqld --skip-grant-tables &

From now on, you will step into the first pit, if you use the wrong modification method posted everywhere on the Internet:

mysql> UPDATE mysql.user SET authentication_string=PASSWORD('your_new_password') WHERE User='root';

(Note that after 5.7, password is changed to authentication_string) Congratulations, you have successfully modified it, but you will find that when you use a GUI tool such as navicat to connect, the following error will be reported:

ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

At the same time, you will find that the command line can use mysql -u root -p to log in, but you can't use mysql, and you can't even use the database. What the hell?

The following command will save you:

mysql> SET PASSWORD = PASSWORD('your_new_password');

After execution, shut down mysqld using the command mysqladmin -u root -p shutdown

Start mysql again with mysql.server start and everything will be ok~

The above is the method I introduced to you to change the root password of Mysql5.7.10 version under MAC. I hope it will be helpful to you. If you have any questions, please leave me a message and I 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:
  • Solution for forgetting the root password of MySQL5.7 under Windows 8.1
  • Detailed tutorial on how to modify the root password after forgetting it in MySQL 5.7
  • What to do if you forget the root password of Mysql5.7 (simple and effective method)
  • Solution to forgetting the root password of MySQL5.7 on Mac
  • MySQL 5.7 installation process and method to reset the root password (shell script)
  • Detailed method for forgetting the root password or resetting the password in Mysql 5.7
  • Problem of retrieving root password in MYSQL 5.7 under Linux (tested and available)

<<:  Detailed explanation of vite+ts to quickly build vue3 projects and introduce related features

>>:  Detailed explanation of mktemp, a basic Linux command

Recommend

Detailed explanation of the adaptive adaptation problem of Vue mobile terminal

1. Create a project with vue ui 2. Select basic c...

Summary of 10 advanced tips for Vue Router

Preface Vue Router is the official routing manage...

Detailed explanation of Docker container data volumes

What is Let’s first look at the concept of Docker...

Detailed steps to store emoji expressions in MySQL

Caused by: java.sql.SQLException: Incorrect strin...

Detailed explanation of lazy loading and preloading of webpack

Table of contents Normal loading Lazy Loading Pre...

Several ways to set the expiration time of localStorage

Table of contents Problem Description 1. Basic so...

How to import Excel files into MySQL database

This article shares with you how to import Excel ...

Two implementation codes of Vue-router programmatic navigation

Two ways to navigate the page Declarative navigat...

Linux kernel device driver kernel time management notes

/****************** * Linux kernel time managemen...

A brief analysis of the knowledge points of exporting and importing MySQL data

Often, we may need to export local database data ...

JavaScript implements draggable progress bar

This article shares the specific code of JavaScri...

MySQL uninstall and install graphic tutorial under Linux

This is my first time writing a blog. I have been...

Learn javascript iterator

Table of contents Introduction What does an itera...

Solution to the error reported by Mysql systemctl start mysqld

Error message: Job for mysqld.service failed beca...

How to install Maven automatically in Linux continuous integration

Unzip the Maven package tar xf apache-maven-3.5.4...