MySQL password is correct but cannot log in locally -1045

MySQL password is correct but cannot log in locally -1045

MySQL password is correct but cannot log in locally -1045 Access denied for user 'root'@'localhost' (using password:YES

MySQL password is correct but cannot log in locally

The error is as follows:

ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)

Solution:

1. Add the option to skip the password question in the parameters for starting MySQL, as follows:

vim /etc/my.cnf

And add skip-grant-tables under [mysql],

This is used to skip the password question, but it is not a complete solution.

2. Restart the MySQL service

I use Mysql in Linux system, the statement is as follows:

Check the port number:

ps aux|grep mysqld

Check the status:

systemctl status mysqld

Restart mysql service

systemctl restart mysqld

Try to connect:

mysql -uroot -p123456

Enter the password. You have just set it to skip the password, so you can ignore it.

The steps are as follows:

[root@localhost ~]# mysql -uroot -p123456
mysql> use mysql
Database changed
mysql> select user,host,password from user where user='root';
+------+-----------------------+-------------------------------------------+
| user | host | password |
+------+-----------------------+-------------------------------------------+
| root | % | *00A51F3F48415C7D4E8908980D443C29C69B60C9 |
| root | localhost.localdomain | *00A51F3F48415C7D4E8908980D443C29C69B60C9 |
| root | 127.0.0.1 | *00A51F3F48415C7D4E8908980D443C29C69B60C9 |
| root | ::1 | *00A51F3F48415C7D4E8908980D443C29C69B60C9 |
+------+-----------------------+-------------------------------------------+
4 rows in set (0.02 sec)

mysql> update user set host='localhost' where user='root' and host='%';
Query OK, 1 row affected (0.01 sec)
Rows matched: 1 Changed: 1 Warnings: 0

mysql> flush privileges;
Query OK, 0 rows affected (0.03 sec)

mysql> quit
Bye

OK, exit mysql, restart mysql to solve the problem

Compare before and after:

[root@localhost ~]# mysql -uroot -p
mysql> use mysql;
Database changed
mysql> select user,host,password from user where user='root';
+------+-----------------------+-------------------------------------------+
| user | host | password |
+------+-----------------------+-------------------------------------------+
| root | localhost | *00A51F3F48415C7D4E8908980D443C29C69B60C9 |
| root | localhost.localdomain | *00A51F3F48415C7D4E8908980D443C29C69B60C9 |
| root | 127.0.0.1 | *00A51F3F48415C7D4E8908980D443C29C69B60C9 |
| root | ::1 | *00A51F3F48415C7D4E8908980D443C29C69B60C9 |
+------+-----------------------+-------------------------------------------+
4 rows in set (0.00 sec)

mysql> 
OK!

Summarize

The above is what I introduced to you. The MySQL password is correct but you cannot log in locally - 1045 Access denied for user ''root''@''localhost'' (using password: YES. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. Thank you very much for your support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • PHP+MySQL implements login verification to see if the login name and password are correct
  • Solution to the problem of being unable to log in locally even though the MySQL password is correct
  • How to correctly modify the ROOT password in MySql8.0 and above versions

<<:  Keepalived implements Nginx load balancing and high availability sample code

>>:  js method to realize shopping cart calculation

Recommend

How to Customize Bash Command Prompt in Linux

Preface As we all know, bash (the B ourne-A gain ...

Vue implements simple data two-way binding

This article example shares the specific code of ...

How to use the markdown editor component in Vue3

Table of contents Install Importing components Ba...

Detailed explanation of Promises in JavaScript

Table of contents Basic usage of Promise: 1. Crea...

Example tutorial on using the sum function in MySQL

Introduction Today I will share the use of the su...

Docker setting windows storage path operation

When installing Docker on Windows 10, after selec...

How to view server hardware information in Linux

Hi, everyone; today is Double 12, have you done a...

Problems encountered by MySQL nested transactions

MySQL supports nested transactions, but not many ...

CentOS 7.2 builds nginx web server to deploy uniapp project

Panther started as a rookie, and I am still a roo...

How to build a standardized vmware image for kubernetes under rancher

When learning kubernetes, we need to practice in ...

What is the function and writing order of the a tag pseudo class

The role of the a tag pseudo-class: ":link&qu...

MySQL multi-instance configuration solution

1.1 What is MySQL multi-instance? Simply put, MyS...

Hyper-V Introduction and Installation and Use (Detailed Illustrations)

Preface: As a giant in the IT industry, Microsoft...

How to build a virtual machine with vagrant+virtualBox

1. Introduction Vagrant is a tool for building an...