Grant remote access to mysql database -


i've used following statement give remote access mysql user

 grant privileges on *.* 'root'@'remoteip' identified 'password' grant option; 

i use following statement see result:

 select * information_schema.user_privileges grantee "'root'%";  

i can see user root@remoteip has access.

but when run script remote server trying insert rows, insert statement rejected. ideas why? have commented out skip-networking in my.cnf file. appreciated. both remote server , server mysql db debian7.


Comments

Popular posts from this blog

c++11 - Intel compiler and "cannot have an in-class initializer" when using constexpr -

rest - Spring boot: Request method 'PUT' not supported -

java - WrongTypeOfReturnValue exception thrown when unit testing using mockito -