Forget the MySQL database password! _ MySQL

Source: Internet
Author: User
This article mainly introduces the actual solution for forgetting the MySQL database password. if you accidentally forget the MySQL database password during actual operations, it is very troublesome, the following article is about cracking the troubles, and the main content of the article is described below. This article mainly introduces the actual solution for forgetting the MySQL database password. it is very troublesome to accidentally forget the MySQL database password during actual operations, the following article is about cracking the troubles, and the main content of the article is described below.

Crack the password of the local MySQL database:

Windows:

1. log on to the system as a system administrator.

2. stop MySQL services.

3. go to the command window and enter the MySQL installation directory. for example, if my installation directory is c: \ mysql, go to C: \ mysql \ bin.

4. skip the permission check and start MySQL,

C: \ mysql \ bin> mysqld-nt -- skip-grant-tables

Or c: \ mysql \ bin> mysqld -- skip-grant-tables

Mysqld.exe is a program related to the database server of Microsoft Windows MySQL server. Mysqld-nt.exe is a MySQL Daemon database service related program.

5. [not verified]

Open a new window

Go to the c: \ mysql \ bin directory and set the new MySQL database password of the root user.

C: \ mysql \ bin> mysqladmin-u root flush-privileges password "newpassword"

C: \ mysql \ bin> mysqladmin-u root-p shutdown

Replace newpassword with the root password you want to use. the second command will prompt you to enter a new password and repeat the password entered by the first command.

5. [verification] or:

Open a command prompt window again (CMD)

Use the empty MySQL database password to log on to MySQL as the root user;

 
 
  1. mysql -u root

Modify the password of the root user;

 
 
  1. Mysql>Update mysql. user set password = PASSWORD ('New password') where User = 'root ';
  2. Mysql>Flush privileges;
  3. Mysql>Quit

6. stop MySQL Server and start Mysql in normal mode

7. You can use a new password to link to Mysql.

Unix & Linux:

1. log on to the system using root or a user running mysqld;

2. use the kill command to end the mysqld process;

3. use the-skip-grant-tables parameter to start MySQL Server

 
 
  1. shell>mysqld_safe –skip-grant-tables &

4. set a new MySQL database password

 
 
  1. shell>mysqladmin -u root flush-privileges password "newpassword"

5. restart MySQL Server

Appendix:

MySQL password change method Daquan:

 
 
  1. mysql> update user set Password=password('newpassword') where User='root';
  2. MYSQLADMIN -u root -p PASSWORD mypasswd

You can modify the MY. ini file in the MYSQL folder.

 
 
  1. mysql> SET PASSWORD FOR myuser@localhost = PASSWORD('mypasswd');
  2. mysql> GRANT USAGE ON *.* TO myuser@localhost IDENTIFIED BY 'mypassword';

Tag tags: MySQL forgot password, MySQL retrieval password, Mysql password, modify MySQL database password

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.