Home > Database > Mysql Tutorial > body text

Solution to forgotten mysql password (picture)

黄舟
Release: 2017-03-27 13:56:34
Original
2120 people have browsed it

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

Solution to forgotten mysql password (picture)

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

Solution to forgotten mysql password (picture)

Solution to forgotten mysql password (picture)

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";

Solution to forgotten mysql password (picture)

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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!