Error: 1130-host... is not allowed to connect to this MySql server opens mysql remote connection without using localhost, 1130-hostlocalhost
Error: 1130-host... is not allowed to connect to this MySql server
Solution:
1. Change the 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"
Mysql-u root-pvmwaremysql> use mysql;
Mysql> update user set host = '%' where user = 'root ';
Mysql> select host, user from user;
2. Authorization method.
For example, if you want myuser to use mypassword to connect to the mysql server from any host.
Grant all privileges on *. * TO 'myuser' @ '%' identified by 'mypassword' with grant option;
Flush privileges;
If you want to allow myuser to connect to the mysql server from a host whose ip address is 192.168.1.6, and use mypassword as the password
Grant all privileges on *. * TO 'myuser' @ '192. 168.1.3 'identified BY 'mypassword' with grant option;
Flush privileges;
If you want to allow myuser to connect to the dk database of the mysql server from a host with ip address 192.168.1.6, and use mypassword as the password
Grant all privileges on dk. * TO 'myuser' @ '192. 168.1.3 'identified BY 'mypassword' with grant option;
Flush privileges;
I used the first method. I first found that it could not work. I checked it online and executed one less statement mysql> FLUSH RIVILEGES to make the modification take effect.
Another method, but I have not tried it myself. You can find it on csdn.net.
Run the following command on the machine where mysql is installed:
1. d: \ mysql \ bin \> mysql-h localhost-u root // enter the MySQL server.
2. mysql> grant all privileges on *. * TO 'root' @ '%' with grant option // GRANT data access permissions TO any host
3. mysql> flush privileges // The modification takes effect.
4. mysql> EXIT // EXIT the MySQL server
In this way, you can log on to any other host as the root user!