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:
|
<<: JavaScript code to achieve a simple calendar effect
>>: Ubuntu basic settings: installation and use of openssh-server
HTML tags have special tags to handle the title of...
This article example shares the specific code for...
Table of contents JSX environment construction In...
Table of contents 1. Why do we need unit testing?...
Introduction to Text Shadows In CSS , use the tex...
Table of contents cause: go through: 1. Construct...
Table of contents Preface 1. Check the file disk ...
Table of contents 1. Introduction 2. Main text 2....
Preface: Jenkins' Master-Slave distributed ar...
This article uses examples to illustrate the basi...
Table of contents Preface Option 1: Option 2: Opt...
Table of contents 1. Brief Introduction 2. setInt...
1. Delete the original mariadb, otherwise mysql c...
Table of contents sequence 1. Centralized routing...
What is MIME TYPE? 1. First, we need to understand...