Two major solutions to problems in MySQL remote connection

Source: Internet
Author: User

This article describes how to solve the MySQL remote connection problem. We all know that the MySQL remote connection problem is often encountered in actual operations, so it is better for you to know more about it. I hope it will help you in this regard.

Solution:

1. ALTER TABLE

It may be that your account is not allowed to log on remotely, but only on localhost. At this time, you only need to log in to mysql on the computer of localhost, and change the "host" entry in the "user" table in the "mysql" database to "%" from "localhost"

 
 
  1. mysql -u root -pvmware  
  2. mysql>use mysql;  
  3. mysql>update user set host = '%' where user = 'root';  
  4. mysql>select host, user from user;  

2. Authorization Law

For example, if you want myuser to use mypassword to connect to the mysql server from any host.

 
 
  1. GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'%' IDENTIFIED BY 'mypassword' WITH GRANT OPTION; 

If you want to allow myuser to connect to the mysql server from a host whose ip address is 192.168.1.3, and use mypassword as the password

 
 
  1. GRANT ALL PRIVILEGES ON *.* TO 'root'@'192.168.1.3' IDENTIFIED BY 'mypassword' WITH GRANT OPTION;   
  2. GRANT ALL PRIVILEGES ON *.* TO 'root'@'10.10.40.54' IDENTIFIED BY '123456' WITH GRANT OPTION;  
  3. mysql> flush privileges;  

The above content is an introduction to the remote connection problem of MySQL. I hope you will get some benefits.
 

The above content is a description of the MySQL remote connection problem, hoping to help you in this regard.

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.