1. ProblemSometimes 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. SolutionModify 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 ③Enter use mysql to change the root password: ④Exit: quit; ⑤Restart mysql again: 1. net stop mysql 2. net start mysql ⑥Whether the test is successful means whether the login is successful. 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:
|
<<: Tips on making web pages for mobile phones
>>: CSS stacking and z-index example code
This article example shares the specific code of ...
<br />What principles should be followed to ...
Table of contents CSS3 Box Model a. CSS3 filter b...
First go to the official website to download and ...
This article shares the specific code of js to re...
Table of contents Preface Analysis and solution o...
MySQL replication table detailed explanation If w...
This reading note mainly records the operations r...
MySQL 8.0 compressed package installation method,...
1. Set up HOST on the host Macbook The previous d...
1. Record several methods of centering the box: 1...
Written in front No matter how well the code is w...
React Hooks is a new feature introduced in React ...
This article introduces how to install MySQL 8.0 ...
How to turn a jar package into a docker container...