search
HomeCommon ProblemHow to change mysql password after forgetting it

Mysql method to change the password after forgetting it: 1. First enter the MySQL database and use the command to connect to the database; 2. Stop the MySQL service before entering the password; 3. Use the command to enter the MySQL safe mode; 4. Use the command to connect to MySQL; 5. After the connection is successful, use the command to modify the MySQL password; 6. After the modification is completed, use the command to exit MySQL; 7. Use the command to restart the MySQL service.

How to change mysql password after forgetting it

#MySQL is a popular open source relational database management system. During use, it is easy to forget the MySQL password. At this time, the MySQL password needs to be modified to avoid affecting the normal use of the database.

In MySQL In version 8.0, the password modification method is different from the previous version. You need to use the "caching_sha2_password" encryption method. Let's introduce how to modify the forgotten MySQL. 8.0 Password.

1. First enter the MySQL database and use the following command to connect to the database:

mysql -u root -p

2.: Stop the MySQL service before entering the password. You can use the following command to stop the MySQL service. :

sudo service mysql stop

3. :Next, use the following command to enter MySQL safe mode:

sudo mysqld_safe --skip-grant-tables &

Note: The "&" symbol represents running in the background in Linux systems.

4. Use the following command to connect to MySQL:

mysql -u root

5. After the connection is successful, use the following command to change the MySQL password:

FLUSH PRIVILEGES;
ALTER USER 'root'@'localhost' IDENTIFIED WITH caching_sha2_password BY 
'new_password';

The "new_password" here is the new password you want to set and needs to be replaced with the password you want to set.

6. After the modification is completed, use the following command to exit MySQL:

exit;

Step 7: Use the following command to restart the MySQL service:

sudo service mysql start

Modify MySQL After completing the password, you need to remember the new password and keep it properly to avoid forgetting the password again.

The above is the detailed content of How to change mysql password after forgetting it. For more information, please follow other related articles on the PHP Chinese website!

Statement
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.