Sometimes need to remotely connect MySQL database, the default is not possible, you can refer to the following method to resolve the next.
1. Log in to your own machine MySQL database: mysql-uroot-p password
Set root user can access any IP, the code is as follows (optional, here% is arbitrary, can also specify IP):
Mysql>update User Set host = '% ' where user = ' root ';
Mysql>select host, user from user;
2, Mysql>grant all privileges on * * to ' root ' @ '% ' identified by ' MyPassword ' with GRANT OPTION;
Permission to access data to any host
3, Mysql>flush privileges;
Changes take effect
4, Mysql>exit
Log out of MySQL server
This will allow you to log in as root on any other host!
Enter IP and ports on other machines (port default 3306), pro-Test OK
c:\users\xxxxx>mysql-uroot-proot-h192.168.0.3-p3307
Welcome to the MySQL Monitor. Commands End With; or \g.
Your MySQL Connection ID is 936
Server version:5.5.28 MySQL Community Server (GPL)
Copyright (c), the Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of the Oracle Corporation and/or its
Affiliates. Other names trademarks of their respective
Owners.
Type ' help ', ' or ' \h ' for help. Type ' \c ' to clear the current input statement.
Mysql>
MySQL Database remote Connection open method