What to do if you forget your mysql password

What to do if you forget your mysql password

Solution to forgetting MySQL password:

[root@localhost ~]# mysql -uroot -p
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)

If this happens, it's usually because MySQL is not up.

[root@localhost ~]# mysql -uroot -p
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

When this happens, it is usually because the password is entered incorrectly.

Solution:

1. Stop MySQL

[root@localhost ~]# service mysqld stop
Stopping mysqld: [ OK ]

2. Modify the configuration file and add the following content to the last line

skip-grant-tables //Skip authorization and enter the database directly

3. Restart MySQL

[root@localhost ~]# service mysqld start
[root@localhost ~]# mysql -uroot -p  
mysql>

4. Reset the password for MySQL

mysql> use mysql //The password is stored in MySQL, you need to enter mysql> desc user; //View the fields in the user table. Passwords are generally stored in the password table. +------------------------+-----------------------------------+------+-----+-----------------------+-------+
| Field | Type | Null | Key | Default | Extra |
+------------------------+-----------------------------------+------+-----+-----------------------+-------+
| Host | char(60) | NO | PRI | | |
| User | char(16) | NO | PRI | | |
| Password | char(41) | NO | | | |

mysql> update user set password=password('passw0rd') where user="root"; //Set the password to passw0rd
mysql> flush privileges; // refresh

5. Then log out and log in again

[root@localhost ~]# mysql -uroot -ppassw0rd
mysql>

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • How to recover MySQL password if you forget it
  • How to modify mysql user password and how to solve mysql password forgetting
  • Six ways to force change the mysql root password (mysql password forgotten)
  • Multiple solutions for linux mysql forgotten password or Access denied for user ''root''@''localhost''
  • MySql login password forgotten and password forgotten solution
  • How to solve the mysql password forgetting (linux and windows summary)
  • Solution to forgetting mysql password
  • Solution for forgetting the password of MySQL root user in Windows
  • How to modify the mysql database password when you forget it
  • Solution to forgetting mysql password under linux

<<:  Sample code for deploying Spring-boot project with Docker

>>:  Introduction to the common API usage of Vue3

Recommend

9 super practical CSS tips to help designers and developers

A web designer's head must be filled with a lo...

What are the rules for context in JavaScript functions?

Table of contents 1. Rule 1: Object.Method() 1.1 ...

33 of the best free English fonts shared

ChunkFive Free Typefamily Cuprum JAH I Free font Y...

Solution to the problem of repeated triggering of functions in Vue project watch

Table of contents Problem description: Solution 1...

Detailed explanation of long transaction examples in MySQL

Preface: The "Getting Started with MySQL&quo...

Detailed Example of MySQL InnoDB Locking Mechanism

1. InnoDB locking mechanism The InnoDB storage en...

Solution to the conflict between nginx and backend port

question: When developing the Alice management sy...

Details on using bimface in vue

Table of contents 1. Install Vue scaffolding 2. C...

JS realizes the front-end paging effect

This article example shares the specific code of ...

Vue custom table column implementation process record

Table of contents Preface Rendering setTable comp...

Practice of implementing custom search bar and clearing search events in avue

Table of contents 1. Customize the search bar con...

Graphical explanation of the function call of proto file in Vue

1. Compile proto Create a new proto folder under ...

MySQL transaction analysis

Transaction A transaction is a basic unit of busi...