Home  >  Article  >  Database  >  Forgot mysql password linux

Forgot mysql password linux

WBOY
WBOYOriginal
2023-05-11 19:23:05690browse

As 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:

  1. Close the MySQL service:
$ systemctl stop mysqld
  1. Start the MySQL service and enter debugging mode:
$ mysqld_safe --skip-grant-tables &
  1. Connect to the MySQL service:
$ mysql -u root
  1. 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
  1. 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:

  1. Use the system account to log in to the Linux system;
  2. 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.

  1. Enter the password of the MySQL user and press Enter;
  2. Use the following statement to change the password (replace new_password with your own password):
> SET PASSWORD FOR 'user_name'@'localhost' = PASSWORD('new_password');
  1. Enter the following command to make the settings take effect:
> FLUSH PRIVILEGES;
  1. 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:

  1. 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
  1. Find a paragraph in the file that looks similar to the following:
[mysqld]
  1. Add the following to the end of the paragraph:
skip-grant-tables
  1. Save and exit the vi editor;
  2. Restart the MySQL service:
$ sudo systemctl restart mysqld
  1. 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
  1. Delete the skip-grant-tables line added in the /etc/my.cnf file;
  2. 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!

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
Previous article:mysql creation processNext article:mysql creation process