Home > Database > Mysql Tutorial > body text

The solution to the forgotten root password of Mysql

高洛峰
Release: 2016-12-02 14:12:53
Original
1042 people have browsed it

If you forget the MySQL root password, you can reset it using the following method:

1. KILL the MySQL process in the system as follows:

a. Click on the desktop toolbar to open the taskbar manager.

b. Find the mysqld-nt.exe process from the Task Manager process, right-click and select End Process.

2. Enter the command mysqld-nt --skip-grant-tables on the command line to start MySQL without checking permissions;

3. Then open another window and use root with an empty password User logs in to MySQL;

4. Modify the password of the root user;

mysql> update mysql.user set password=PASSWORD (new password) where User=root;
mysql> flush privileges;
mysql> quit


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!