Solution to forgotten mysql password (picture)
mysqlWhat should I do if I forget my password? Uninstall and reinstall? This article mainly introduces in detail the method of resetting the password without uninstalling. It has certain reference value. Interested friends can refer to
Forgot mysql password twice? I did the stupidest thing at first, uninstalled and reinstalled.
Now there is a way to set the password back without uninstalling it. The knowledge comes from the Internet. I have sorted it out a little here. If you meet the same friends, you can try it.
The following implementations are all done on Windows systems.
Step 1
Find mysqld.exe in the task manager and end the process.
Second step
Find the bin directory under the mysql installation directory. Mine is C:\Program Files\MySQL\mysql-5.6.24 \bin
Open the console in this directory and enter: mysqld --skip-grant-tables
Step 3
Switch to the path just now and open a new controller
1) Enter: mysql
2) Enter: show databases;
3) Input: use mysql
4) Input: show tables;
You can now see the user table
Input: select user, password, host from user; you can see the contents of 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 password change of mysql has been completed.
The above is the detailed content of Solution to forgotten mysql password (picture). For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP's big data structure processing skills

How to optimize MySQL query performance in PHP?

How to use MySQL backup and restore in PHP?

How to insert data into a MySQL table using PHP?

How to fix mysql_native_password not loaded errors on MySQL 8.4

How to use MySQL stored procedures in PHP?

How to create a MySQL table using PHP?

The difference between oracle database and mysql
