Set MySQL to allow Internet access, and mysql to allow Internet access

Source: Internet
Author: User

Set MySQL to allow Internet access, and mysql to allow Internet access
1: Set the mysql configuration file/etc/mysql/my. cnf, find bind-address = 127.0.0.1, and comment it out. // This function no longer allows local access only. Restart mysql:/etc/init. d/mysql restart; 2: log on to the mysql database: mysql-u root-p mysql> use mysql; query host values: mysql> select user, host from user; if the host value "%" does not exist, execute the following two sentences:
Mysql> update user set host = '%' where user = 'root ';
Mysql> flush privileges; alternatively, you can run mysql> grand all privileges on *. * to root @ '%' identifies by 'xxx'; the first * indicates the database name; the second * indicates the table name of the database; if it is like the preceding *. * indicates that access is allowed from all tables to the database. '%' indicates the ip address that is allowed to access mysql. Of course, you can also configure the specific ip address; % indicates that all ip addresses can be accessed, followed by 'xxx' as the root user's password. For example:

Any host is connected to the mysql server with the user root and password mypwd
Mysql> grant all privileges on *. * TO 'root' @ '%' identified by 'mypwd' with grant option;
Mysql> flush privileges;

The host whose IP address is 192.168.1.102 is connected to the mysql server with the user myuser and password mypwd.
Mysql> grant all privileges on *. * TO 'myuser' @ '192. 168.1.102 'identified BY 'mypwd' with grant option;
Mysql> flush privileges;

 

 
How to Set mysql to allow Internet access

The root account of mysql. I usually use localhost or 127.0.0.1 during connection. The mysql on the testing server of the company is also localhost. Therefore, I want to access the root account and the test is paused.
Solution:
1. Modify the table, log on to the mysql database, switch to the mysql database, and use the SQL statement to view "select host, user from user ;"
Mysql-u root-pvmwaremysqluse mysql;
Mysqlupdate user set host = '%' where user = 'root ';
Mysqlselect host, user from user;
Mysqlflush privileges; Note: The last sentence is very important to make the modification take effect. If no write is made, remote connection is still unavailable.
2. Authorize the user. You want the root user to use the password to connect to the mysql server from any host.
Grant all privileges on *. * TO 'root' @ '%' identified by 'admin123' with grant option;
Flush privileges;
If you want to allow the user root to connect to the mysql server from a host with the ip address 192.168.1.104

What can I do if mysql wants to allow Internet access?

External links
 

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.