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:

  1. open dos command prompt on server.
  2. run following command mysql\bin directory:

    mysql -u root --password=

  3. a mysql prompt should displayed.

  4. to create remote user account root privileges, run following commands:

    grant privileges on . 'username'@'ip' identified 'password';


Comments

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -