Solution to forget password when installing MySQL on Linux/Mac

Solution to forget password when installing MySQL on Linux/Mac

Preface

This article mainly introduces the relevant solutions for forgetting the password when installing MySQL on Linux/Mac. It is shared for your reference. Let’s take a look at the detailed introduction.

Use equipment

Computer: Linux or like-Linux OS

mysql version: 5.7+

Problem Description

After the installation is complete, you cannot connect to the database through the command mysql -u root

Solution

Generally, the MySQL server installed through DMG is installed in /usr/local/mysql-version-name-.../

By going into that directory and then cd ./bin

# If mysql is running, shut down the mysql service $ sudo lsof -i:3306
$ sudo kill -9 mysql-pid
# Enable mysql safe mode $ sudo ./mysqld_safe --skip-grant-tables

# Enter mysql shell
$ sudo ./mysql -u root

# Modify the root user password in the mysql.user table $ update mysql.user set authentication_string=PASSWORD('you password') where User='root';

# The modification is complete here.

Afterword

After the modification, if you use navicat to connect to the database, you will be prompted to change the password. Just re-enter the password. Because the password modified through safe mode is still marked as expired, so modify it again.

Summarize

The above is the full content of this article. There are still many shortcomings in this article. I hope that the content of this article will have certain reference learning value for everyone’s study or work. If you have any questions, you can leave a message to communicate. Thank you for your support for 123WORDPRESS.COM.

You may also be interested in:
  • The problem of not being able to remember the SVN password of idea under mac and the solution
  • Example code for resetting PostgreSQL password on Mac
  • Solution to the problem that IntelliJ IDEA's SVN cannot save passwords on MAC
  • How to reset mysl8.0.11 password on mac
  • How to set password for mysql version 5.6 on mac
  • Tutorial on resetting the root password of Mac MySQL
  • Solution to forgetting the MYSQL database password under MAC
  • What to do if you forget the initial password when installing MySQL on Mac
  • Common methods for retrieving system account and password on MAC

<<:  VMware Tools installation and configuration tutorial for Ubuntu

>>:  Control the light switch with js

Recommend

Detailed explanation of common methods of Vue development

Table of contents $nextTick() $forceUpdate() $set...

Learn more about using regular expressions in JavaScript

Table of contents 1. What is a regular expression...

Example of how to reference environment variables in Docker Compose

In a project, you often need to use environment v...

Mobile development tutorial: Summary of pixel display issues

Preface I believe that in the process of mobile t...

Solve the problem of PhPStudy MySQL startup failure under Windows system

Report an error The Apache\Nginx service started ...

How to build a multi-node Elastic stack cluster on RHEL8 /CentOS8

Elastic stack, commonly known as ELK stack, is a ...

JavaScript closure details

Table of contents 1. What is a closure? 2. The ro...

Causes and solutions for MySQL master-slave synchronization delay

For historical reasons, MySQL replication is base...

Using text shadow and element shadow effects in CSS

Introduction to Text Shadows In CSS , use the tex...

Let's talk in detail about the difference between unknown and any in TypeScript

Table of contents Preface 1. unknown vs any 2. Th...

Description of the execution mechanisms of static pages and dynamic pages

1. A static page means that there are only HTML ta...

Let you understand the deep copy of js

Table of contents js deep copy Data storage metho...

Docker installation of Nginx problems and error analysis

question: The following error occurred when insta...

Let's take a look at some powerful operators in JavaScript

Table of contents Preface 1. Null coalescing oper...

HTTP header information interpretation and analysis (detailed summary)

HTTP Header Explanation 1. Accept: Tells the web s...