You may have set a MySQL password just now, but forget it when you go out to eat or pick up a package... Should we panic at this time? ? ? ? Don't worry, brothers, I will solve your troubles of forgetting passwords~ The following is a summary of the video of Teacher Lin Haifeng You can think of MySQL's function of obtaining username and password verification as a decorator in Python, which is decorated on the function that the client requests access. If we remove this decorator, the MySQL server will not verify the username and password! ! ! ! # 1. First shut down the current MySQL server. # Start by command (let MySQL skip the username and password verification function) # mysqld --skip-grant-tables # Start on the server and open cmd as an administrator # 2. Connect directly without a password # mysql -uroot -p and press Enter # 3. Modify the password of the current user. # The user information is stored in user.frm in the mysql folder. # update mysql.user set password=password(new password) where user='root' and host='localhost'; ''' The field that actually stores the password of the user table must be stored in ciphertext. Only the user himself knows what the plaintext is, and no one else knows it. This is more secure. Password comparison can only compare ciphertext. MySQL calls the password() method to encrypt the password.''' # 4. Immediately flush the modified data to the hard disk # flush privilege; # 5. Close the current server and then start it in the normal way of verifying the authorization table Click Start and then click Restart. Reopen a normal cmd to start mysql and enter the new password This is the end of this article about how to solve the problem of forgetting the MySQL database password. For more information about forgetting the MySQL password, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Json advantages and disadvantages and usage introduction
>>: Introduction to root directory expansion under Linux system
MySQL's foreign key constraint is used to est...
Table of contents Common array methods Adding and...
Table of contents 1. Install html2Canvas 2. Intro...
This article example shares the specific code of ...
Table of contents 1.0 Introduction 2.0 Docker Ins...
This article records the installation and configu...
Table of contents background Function Purpose Ide...
Table of contents 1. Scene layout 2. Add a handle...
Requirements: Remove HTTP response headers in IIS...
There were always problems when installing tortoi...
Each web page has an address, identified by a URL...
vue-element-admin import component encapsulation ...
MySQL itself was developed based on the file syst...
Table of contents 1. When the mouse passes over t...
What we are simulating now is a master-slave syst...