Saturday, January 12, 2013

how to access mysql database remote

CREATE USER 'username'@'localhost' IDENTIFIED BY 'password';


GRANT ALL PRIVILEGES ON demo . * TO bikash@localhost IDENTIFIED BY '123456'


remote access- for IP bind


GRANT ALL PRIVILEGES ON *.* TO 'season'@'%' IDENTIFIED BY '111111@12345';

FLUSH PRIVILEGES;

No comments:

Post a Comment