MySQL Remote connection Host * is not a allowed to connect to this MySQL server (first configuration good LNMP environment)

Source: Internet
Author: User

1. First time to build MySQL on Linux, native Windows remote link error host * is not allowed to connect to this MySQL server

2. Reason: MySQL server is only allowed to log on locally to the database server by default for security reasons.

Problem solving: After logging in to MySQL, change the "host" entry in the "User" table in the "MySQL" database, rename "%" from "localhost", and then restart MySQL so that all remote machines are allowed to access.

Step 1: Modify the MySQL table

Mysql-u Root-pvmware
Mysql>use MySQL;
Mysql>update User Set host = '% ' where user = ' root ';
Mysql>flush privileges;
Mysql>select host, user from user;

Mysql>quit

Success!!!!

MySQL Remote connection Host * is not a allowed to connect to this MySQL server (first configuration good LNMP environment)

Related Article

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.