Forgot mysql password linux
May 11, 2023 pm 07:23 PMAs a Linux server administrator, you must have encountered the situation of forgetting the MySQL database password more than once. When you need to manage or modify the MySQL database, you suddenly find that you cannot log in, or the password you set previously no longer applies. At this time, don’t panic, this article will introduce you to several methods to retrieve the MySQL database password from the Linux system.
Method 1: Use troubleshooting mode to reset password
MySQL provides a special troubleshooting mode (Troubleshooting Mode), which can reset the MySQL root user when the password is forgotten. password.
The steps are as follows:
- Close the MySQL service:
$ systemctl stop mysqld
- Start the MySQL service and enter debugging mode:
$ mysqld_safe --skip-grant-tables &
- Connect to the MySQL service:
$ mysql -u root
- Execute the following command to reset the root user password:
> use mysql; > update user set password=PASSWORD("new_password") where User='root'; > flush privileges; > quit
- Close the MySQL service, Then restart:
$ systemctl stop mysqld $ systemctl start mysqld
After that, try to log in to MySQL using the new password.
Method 2: Use the Linux system account to reset the password
If you used the system user when creating the MySQL user and you have remembered the user's password, then you can use this user to log in and change the MySQL user's password.
The steps are as follows:
- Use the system account to log in to the Linux system;
- Open the command line terminal and enter the following command:
$ mysql -u user_name -p
Among them, user_name is the MySQL user name for which you need to reset the password.
- Enter the password of the MySQL user and press Enter;
- Use the following statement to change the password (replace new_password with your own password):
> SET PASSWORD FOR 'user_name'@'localhost' = PASSWORD('new_password');
- Enter the following command to make the settings take effect:
> FLUSH PRIVILEGES;
- Exit the MySQL terminal:
> quit
Method 3: Change the password through the configuration file
If you know the password of the MySQL root user, then you can directly modify the configuration file and then restart the MySQL service.
The steps are as follows:
- Use vi to edit the MySQL configuration file, which is usually in /etc/my.cnf or /etc/mysql/my.cnf:
$ sudo vi /etc/my.cnf
- Find a paragraph in the file that looks similar to the following:
[mysqld]
- Add the following to the end of the paragraph:
skip-grant-tables
- Save and exit the vi editor;
- Restart the MySQL service:
$ sudo systemctl restart mysqld
- Use the following statement to update the password (replace new_password with your own password ):
$ mysql -u root > use mysql; > update user set password=PASSWORD("new_password") where User='root'; > flush privileges; > quit
- Delete the skip-grant-tables line added in the /etc/my.cnf file;
- Restart the MySQL service:
$ sudo systemctl restart mysqld
Summary
Whether the MySQL database is inaccessible due to forgotten passwords, incorrect operations, or other reasons, don't panic, the above three methods can help you solve the problem. If you encounter a similar situation, please try to follow the above steps to retrieve the MySQL database password.
The above is the detailed content of Forgot mysql password linux. For more information, please follow other related articles on the PHP Chinese website!

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Reduce the use of MySQL memory in Docker

How do you alter a table in MySQL using the ALTER TABLE statement?

How to solve the problem of mysql cannot open shared library

What is SQLite? Comprehensive overview

Run MySQl in Linux (with/without podman container with phpmyadmin)

Running multiple MySQL versions on MacOS: A step-by-step guide

What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)?

How do I secure MySQL against common vulnerabilities (SQL injection, brute-force attacks)?
