ERROR 1045 (28000) ERROR solution caused by root@127.0.0.1 (localhost) access when mysql enables skip-name-resolve,
Why do I configure skip-name-resolve?
Because mysql-h $ {ip} remote access is too slow,
mysql -h172.16.66.171 -uroot -p123456
According to user experience (https://www.cnblogs.com/yjf512/p/3803762.html ),
vi /etc/my.cnf
[mysqld]skip-name-resolve
Restart mysql and find that the remote access to msyql is faster.
However, new problems are raised:
However, it is found that msyql (mysql-h127.0.0.1-uroot-p123456) cannot be accessed locally:
[root@localhost ~]# mysql -h127.0.0.1 -uroot -p123456Warning: Using a password on the command line interface can be insecure.ERROR 1045 (28000): Access denied for user 'root'@'127.0.0.1' (using password: YES)
You can access it without entering the password (mysql-h127.0.0.1-uroot.
[root@localhost ~]# mysql -h127.0.0.1 -uroot Welcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id is 91114Server version: 5.6.35-log MySQL Community Server (GPL)Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql>
Solution:
Reference (http://blog.sina.com.cn/s/blog_759a5a7c01017dj0.html) to reset the root password:
[root@localhost ~]# mysql -h127.0.0.1 -uroot Welcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id is 91114Server version: 5.6.35-log MySQL Community Server (GPL)Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql> use mysql;Database changedmysql> update user set password=password("123456") where user="root";Query OK, 3 rows affected (0.06 sec)Rows matched: 5 Changed: 3 Warnings: 0mysql> flush privileges;Query OK, 0 rows affected (0.13 sec)mysql> quitBye
[root@localhost ~]#
Use mysql-h127.0.0.1-uroot-p123456 for access and solve the problem.
[root@localhost ~]# mysql -h127.0.0.1 -uroot -p123456Warning: Using a password on the command line interface can be insecure.Welcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id is 2487Server version: 5.6.35-log MySQL Community Server (GPL)Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql>
The ERROR 1045 (28000) online information caused by enabling skip-name-resolve is unknown. It took a long time to solve this problem, so this article was published.
My first blog on cnblogs!