ERROR 1130: Host '192.168.1.3' is not allowed to connect to this MySQL server
解决方法:
mysql>use mysql; mysql>update user set host = '%' where user = 'root'; mysql>select host, user from user;
2. 授权法。例如,你想myuser使用mypassword从任何主机连接到mysql服务器的话。
GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'%' IDENTIFIED BY 'mypassword' WITH GRANT OPTION; |