What to do if you forget your mysql password

What to do if you forget your mysql password

Forgot your MySQL password twice? At first I did the stupidest thing, uninstalling and reinstalling.

Now there is a way to set the password back without uninstalling. The knowledge comes from the Internet. I have organized it here briefly. If you meet friends with the same problem, you can try it.

The following implementations are all completed on Windows systems.

first step

Find mysqld.exe in the Task Manager and end the process.

Step 2

Find the bin directory under the mysql installation directory. Mine is C:\Program Files\MySQL\mysql-5.6.24\bin

Open a console in this directory and enter: mysqld --skip-grant-tables

Step 3

Switch to the path just now and open a new controller

1) Input: mysql

2) Input: show databases;

3) Input: use mysql

4) Input: show tables;

At this time you can see the user table

Input: select user,password,host from user; you can see the contents in the table.

We now modify the data in the table through update.

Input: update user set password=passwrod("123456") where user="root" and host="localhost";


Since then, the mysql password has been changed.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • What to do if you forget the initial password of MySQL on MAC
  • Solution to forgetting the root password of mysql under linux
  • Solutions to forget mysql root password in Linux environment (three)
  • How to reset the MySQL password after forgetting it in Mac operating system
  • What to do if you forget the MySQL root password? How to change the root password
  • How to view or modify the root password of MySQL if it is forgotten (with pictures and text)
  • The best solution to forgetting mysql password
  • How to modify mysql password if you forget it
  • Solution to forgetting mysql password in MAC

<<:  Centos 7 64-bit desktop version installation graphic tutorial

>>:  JavaScript implements a box that follows the mouse movement

Recommend

11 ways to remove duplicates from js arrays

In actual work or interviews, we often encounter ...

How to use resident nodes for layer management in CocosCreator

CocosCreator version: 2.3.4 Most games have layer...

Data URI and MHTML complete solution for all browsers

Data URI Data URI is a scheme defined by RFC 2397...

MySQL master-slave replication delay causes and solutions

Table of contents A brief overview of the replica...

vue uses Ele.me UI to imitate the filtering function of teambition

Table of contents Problem Description The general...

Vue implements drag progress bar

This article example shares the specific code of ...

How to package the project into docker through idea

Many friends have always wanted to know how to ru...

How to deploy hbase using docker

Standalone hbase, let’s talk about it first. Inst...

HTML Frameset Example Code

This article introduces a framework made by Frame...

JavaScript DOMContentLoaded event case study

DOMContentLoaded Event Literally, it fires after ...

Overview and differences between html inline elements and html block-level elements

Block-level element features : •Always occupies a ...

37 Tips for a Good User Interface Design (with Pictures)

1. Try to use single column instead of multi-colum...

How to deploy nextcloud network disk using docker

NextCloud You can share any files or folders on y...

How to write elegant JS code

Table of contents variable Use meaningful and pro...