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
When you start working on a project, it’s importa...
ClickHouse is an open source column-oriented DBMS...
When the data changes, the DOM view is not update...
The same server simulates the master-slave synchr...
Yesterday I bought an Alibaba Cloud server that h...
First, build the case demonstration table for thi...
Overview Nginx can use variables to simplify conf...
I finished reading "Patterns for Sign Up &...
Table of contents Preface InnoDB storage architec...
It took me three hours to install MySQL myself. E...
HTML-centric front-end development is almost what ...
Without further ado, these three methods are: ren...
You may often see the following effect: That’s ri...
Table of contents 1. Several syntaxes of Insert 1...
Add rules to the el-form form: Define rules in da...