How to Remote MySQL on IIS?

bruhguy

Retired
Jun 26, 2015
261
34
Windows Server?

Open MySQL Command
It's should look like this
Code:
mysql>
Then copy this
Code:
GRANT ALL ON databasename.* TO username@'IP.IP.Here.Here' IDENTIFIED BY 'your_sql_user_password';
Run the query

Check your computer's public ip, your gonna need it
 

Brad

Well-Known Member
Jun 5, 2012
2,320
993
Or you could just open the mysql Database on navicat and run this
Code:
GRANT ALL ON databasename.* TO root@'IP' IDENTIFIED BY 'password';
 

Users who are viewing this thread

Top