MySQL password modification example detailed explanation

MySQL password modification example detailed explanation

MySQL password modification example detailed explanation

I haven't used MySQL for a long time. Today, when I opened HediSQL to connect to MySQL, I found that I had forgotten the root password. I fiddled with the password modification operation for a while. I recorded it for later use. (Win10 native operation)

Shut down the MySQL service: net stop MySQL
Open a cmd console window as an administrator, enter the bin directory where MySQL is located, and execute mysqld --skip-grant-tables
Open another cmd window and execute the mysql command directly (since the 2nd operation can access the table without authorization, you can log in directly with mysql without a username and password)
Switch to mysql database: uses mysql;
Modify the password field of the user table: update user set password = password ( '123456' ) where user = 'root';
Perform the refresh operation: flush privileges; 
Exit mysql: quit;
Restart the MySQL service: net start MySQL

Step 2: Start the MySQL server

Step 3-7, change the user password

Thank you for reading, I hope it can help you, thank you for your support of this site!

You may also be interested in:
  • How to change password in MySQL 5.7.18
  • How to modify the password of MySQL 5.1 and remotely log in to the MySQL database
  • MySQL 5.7.16 changes password prompt ERROR 1054 (42S22): Unknown column ''''password'''' in ''''field list'''' reason
  • Quick solution to the error after changing the password of MySql
  • mysql modify password and set to allow remote login
  • Three ways to change mysql password and solutions to forget root password
  • MySql add user, authorization, change password and other statements
  • MYSQL basics: connect to MYSQL, change password, add user

<<:  JavaScript code to achieve a simple calendar effect

>>:  Ubuntu basic settings: installation and use of openssh-server

Recommend

H tags should be used reasonably in web page production

HTML tags have special tags to handle the title of...

Mini Program Custom TabBar Component Encapsulation

This article example shares the specific code for...

Getting Started with Front-End Vue Unit Testing

Table of contents 1. Why do we need unit testing?...

Using text shadow and element shadow effects in CSS

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

Detailed explanation of this reference in React

Table of contents cause: go through: 1. Construct...

Several specific methods of Mysql space cleaning

Table of contents Preface 1. Check the file disk ...

Detailed explanation of NodeJS modularity

Table of contents 1. Introduction 2. Main text 2....

Linux Jenkins configuration salve node implementation process diagram

Preface: Jenkins' Master-Slave distributed ar...

Detailed explanation of the basic functions and usage of MySQL foreign keys

This article uses examples to illustrate the basi...

MySql fuzzy query json keyword retrieval solution example

Table of contents Preface Option 1: Option 2: Opt...

JavaScript Timer Details

Table of contents 1. Brief Introduction 2. setInt...

Detailed tutorial on installing MySQL offline on CentOS7

1. Delete the original mariadb, otherwise mysql c...

Implementation of react automatic construction routing

Table of contents sequence 1. Centralized routing...

What is MIME TYPE? MIME-Types type collection

What is MIME TYPE? 1. First, we need to understand...