Several solutions for forgetting the MySQL password

Several solutions for forgetting the MySQL password

Solution 1

Completely uninstall and delete all data. First, close all processes related to MySQL. Enter the command line (cmd) and enter taskkill /f /im mysqld-nt.exe

Then find the root directory of MySql and delete it

Solution 2

Enter the password in the command line or change the password

.Run from the command line: taskkill /f /im mysqld-nt.exe

The following operations are to operate some programs in the bin directory of MySQL. If the environment variables are not configured, you need to switch to the bin directory of MySQL and execute the following statements. Otherwise invalid

.Continue to run in the command line: mysqld-nt --skip-grant-tables

3. Open a new command line and run: mysql -u root (If the mysql bin environment variable is not configured, you need to switch to the bin directory to execute this statement)

If you don't want to change the password, but just want to see the original password. You can execute this statement on the command line

select host,user,password from mysql.user; //You can view the user and password

If you want to change the password, execute the following statement in the command line

update mysql.user set password='Fill in the password you want to set here' where user='root';

After completing these operations, continue to run in the command line

taskkill /f /im mysqld-nt.exe; //For safety reasons, end it first, because now you can log in directly with mysql -u root net start mysql; //Start the mysql service

At this point, the solution to the forgotten mysql root password is complete.

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • PHP+MySQL implements login verification to see if the login name and password are correct
  • 4 ways to modify MySQL root password (summary)
  • Steps to initialize the password after the first successful installation of MySQL
  • Solve the problem of changing the password when logging in for the first time after installing MySQL 8.0
  • MySQL 8.0.15 installation and configuration graphic tutorial and password change under Linux
  • Complete steps to configure and install phpMyAdmin in CentOs 7.*
  • How to install and configure phpMyAdmin under centos
  • CentOS7 LNMP+phpmyadmin environment construction Part 3 phpmyadmin installation
  • Tutorial on installing phpMyAdmin on CentOS
  • Solution to the error of accessing phpmyadmin from newly installed XAMPP
  • phpmyadmin3 installation and configuration graphic tutorial
  • When installing phpmyadmin, I get the following error message: Warning: require_once (./libraries/common.inc.php)
  • How to install and configure phpMyAdmin in a virtual host
  • How to install PHPMYAdmin in win2008 IIS7
  • Ubuntu View and modify mysql login name and password, install phpmyadmin

<<:  How to install ELK in Docker and implement JSON format log analysis

>>:  The implementation process of ECharts multi-chart linkage function

Recommend

Analysis of the principle of centering elements with CSS

It is a very common requirement to set the horizo...

Summary of 9 excellent code comparison tools recommended under Linux

When we write code, we often need to know the dif...

3 simple ways to achieve carousel effects with JS

This article shares 3 methods to achieve the spec...

How to upload projects to Code Cloud in Linux system

Create a new project test1 on Code Cloud Enter th...

Analysis of uniapp entry-level nvue climbing pit record

Table of contents Preface Hello World image Set b...

Basic use of javascript array includes and reduce

Table of contents Preface Array.prototype.include...

Detailed explanation of the execution process of MySQL query statements

Table of contents 1. Communication method between...

Detailed explanation of the error problem of case when statement

Preface In the MySQL database, sometimes we use j...

Introduction to the use and disabling of transparent huge pages in Linux

introduction As computing needs continue to grow,...

CSS Sticky Footer Several Implementations

What is "Sticky Footer" The so-called &...

How to configure two-way certificate verification on nginx proxy server

Generate a certificate chain Use the script to ge...

jQuery implements percentage scoring progress bar

This article shares the specific code of jquery t...

Detailed explanation of how to view the number of MySQL server threads

This article uses an example to describe how to v...