Mysql allows extranet access setup steps _mysql

Source: Internet
Author: User
Tags flush mysql command line

1, open Mysql.exe (MySQL Command line Client), enter the password

2, input: use MySQL;

3, query host input: Select User,host from User;

4, create the host (if there is "%" the host value, then skip this step)

If there is no "%" host value, execute the following two sentences:

mysql> Update user set host= '% ' where user= ' root ';
mysql> flush Privileges;

5, authorized users

(1) Any host to the user root and password pwd connected to the MySQL server

Mysql> grant all privileges in *.* to ' root ' @ '% ' identified by ' pwd ' with GRANT OPTION;
mysql> flush Privileges;

(2) Specify the host IP (such as 192.168.1.100) to connect to the MySQL server with the user tuser and password tpwd

Mysql> grant all privileges in *.* to ' tuser ' @ ' 192.168.1.100 ' identified by ' tpwd ' with GRANT OPTION; 
mysql> flush Privileges;

The above mentioned is a small set of MySQL to introduce you to allow access to the Internet settings steps, I hope to help you, if you have any questions please give me a message, small series will promptly reply to everyone. Here also thank you very much for the cloud Habitat Community website support!

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.