ERROR 1045 (28000) ERROR solution caused by root@127.0.0.1 (localhost) access when mysql enables skip-name-resolve,

Source: Internet
Author: User

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!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.