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

java - WrongTypeOfReturnValue exception thrown when unit testing using mockito -

php - Magento - Deleted Base url key -

android - How to disable Button if EditText is empty ? -