WockoLad SELECT * FROM `lads` WHERE `username` = 'WockoLad' Dec 24, 2014 233 23 Sep 21, 2015 #1 Hey, How do you Remote MySQL on IIS?
Ecko 23:37 [autobots] -!- eckostylez [[email protected]] Nov 25, 2012 1,398 962 Sep 21, 2015 #2 Go open port 3306 on firewall and then grant remote IP access in mysql: GRANT ALL PRIVILEGES ON databasename.* TO 'user'@'ipadress' Upvote 0 Downvote
Go open port 3306 on firewall and then grant remote IP access in mysql: GRANT ALL PRIVILEGES ON databasename.* TO 'user'@'ipadress'
bruhguy Retired Jun 26, 2015 261 34 Oct 28, 2015 #3 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 Upvote 0 Downvote
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 Oct 28, 2015 #4 Or you could just open the mysql Database on navicat and run this Code: GRANT ALL ON databasename.* TO root@'IP' IDENTIFIED BY 'password'; Upvote 0 Downvote
Or you could just open the mysql Database on navicat and run this Code: GRANT ALL ON databasename.* TO root@'IP' IDENTIFIED BY 'password';
Ecko 23:37 [autobots] -!- eckostylez [[email protected]] Nov 25, 2012 1,398 962 Oct 28, 2015 #5 aka just repost my advice just slightly altered Upvote 0 Downvote