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

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

1. Problem

Sometimes when we log in to Mysql and enter the password, this situation occurs

mysql -u root -p

Enter Password > 'Password'

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

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

2. Solution

Modify the my.in/my.cnf configuration file

Enter the mysql installation directory

Edit my.ini

Add skip-grant-tables under [mysqld] and save the file.

Open a command line as an administrator

①Restart mysql:

1. net stop mysql 2. net start mysql

②Enter mysql, log in mysql -u root -p
No need to enter a password, just press Enter (if Enter Password appears, just press Enter to log in successfully)

③Enter use mysql to change the root password:
update user set authentication_string=password('new password') where user='root';
flush privileges;

④Exit:

quit;

⑤Restart mysql again:

1. net stop mysql 2. net start mysql

⑥Whether the test is successful means whether the login is successful.
mysql -u root -p

Enter Password>'New Password'

There will be no mistakes, you can log in! ! !

(Another situation is that you entered the wrong password. If this is the first time you log in after initialization, it is very likely that the password is wrong. You should carefully check the password after initialization. It may be due to spaces, decimal points and other symbols.)

The above is the detailed content of solving mysql: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO/YES). For more information about ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO/YES), please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Solution to mysql ERROR 1045 (28000) problem
  • How to solve the mysql ERROR 1045 (28000)-- Access denied for user problem
  • ERROR 1045 (28000): Access denied for user ''''root''''@''''localhost''' (using password: YES) Practical solution
  • How to solve the error "ERROR 1045 (28000)" when logging in to MySQL
  • Solve the problem of ERROR 1045 (28000): Access denied for user ''root''@''localhost'' when logging in after installing MySQL 5.7.17 on Ubuntu 16.04
  • MySQL ERROR 1045 (28000): Access denied for user ''root''@''localhost'' (using password: NO) Causes and solutions
  • MySQL login error prompt: Solution to ERROR 1045 (28000)
  • MYSQL ERROR 1045 (28000): Access denied for user (using password: YES) solution

<<:  Tips on making web pages for mobile phones

>>:  CSS stacking and z-index example code

Recommend

Share 13 excellent web wireframe design and production tools

When you start working on a project, it’s importa...

Tutorial on how to quickly deploy clickhouse using docker-compose

ClickHouse is an open source column-oriented DBMS...

Talk about nextTick in Vue

When the data changes, the DOM view is not update...

A brief discussion on the execution details of Mysql multi-table join query

First, build the case demonstration table for thi...

Use of nginx custom variables and built-in predefined variables

Overview Nginx can use variables to simplify conf...

Rules for registration form design

I finished reading "Patterns for Sign Up &...

Why MySQL does not recommend deleting data

Table of contents Preface InnoDB storage architec...

MySQL 5.7.23 version installation tutorial and configuration method

It took me three hours to install MySQL myself. E...

HTML is the central foundation for the development of WEB standards

HTML-centric front-end development is almost what ...

Three ways to share component logic in React

Without further ado, these three methods are: ren...

Pure CSS to achieve the list pull-down effect in the page

You may often see the following effect: That’s ri...

MySQL Practical Experience of Using Insert Statement

Table of contents 1. Several syntaxes of Insert 1...

Vue implements form data validation example code

Add rules to the el-form form: Define rules in da...