Remote access to MySQL server in Windows -
using mysql workbench in windows 7 how can bind mysql server ip address instead of 127.0.0.1 , how can give users different hosts access it?
from here:
- open dos command prompt on server.
run following command mysql\bin directory:
mysql -u root --password=
a mysql prompt should displayed.
to create remote user account root privileges, run following commands:
grant privileges on . 'username'@'ip' identified 'password';
Comments
Post a Comment