I want to access my server's MySql database in my local system. But I am unable to set/configure server's mysql to allow remote access. Please tell me that how can i configure server.
feedback
|
|
You must need to change setting in Windows Firewall-
Then you may access this db in local system. | |||
|
feedback
|
|
The question isn't much clear. Usually if you want to access your MySql db only locally you must create a user with the Host field set to localhost, and if you want to access from everywhere the host value must be set to "%" otherwise you can specify the hosts like in that example: INSERT INTO user (Host,User,Password,...) VALUES('%.mydomain.com','myname',PASSWORD('pass'),...); FLUSH PRIVILEGES; where % indicate from any host from mydomain.com | |||
feedback
|