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
Post a Comment