If I do SHOW GRANTS in my mysql database I get

GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' IDENTIFIED BY PASSWORD 'some_characters' WITH GRANT OPTION

If I am not mistaken, root@localhost means that user root can access the server only from localhost. Ho do I tell mysql to grant root ther permission to access this mysql server from every other machin (in the same network), too?

link|improve this question

feedback

1 Answer

This grants root access with the same password from any machine in *.example.com:

GRANT ALL PRIVILEGES ON *.* TO 'root'@'%.example.com' 
IDENTIFIED BY PASSWORD 'some_characters' WITH GRANT OPTION

MySQL GRANT syntax docs.

link|improve this answer
1  
I assume ...TO 'root'@'%' IDENTIFIED... would grant access from everywhere? – Aufwind Jun 4 '11 at 20:21
@Aufwind yes that's correct. – Michael Jun 4 '11 at 20:23
I executed the command in mysql, but SHOW GRANTS still shows the same (as in my question). I even did FLUSH PRIVILGES. Is there something I miss? – Aufwind Jun 4 '11 at 20:33
@Aufwind I wouldn't exepct you to need anything else besides FLUSH PRIVILEGES. Logout and back in, restart the mysqld service if you have access. Also, be sure that the skip networking line is not enabled in your my.cnf though that would not account for your SHOW GRANTS still not being the same. – Michael Jun 4 '11 at 22:57
@Aufwind Failing that, you may need to ask over at ServerFault.com instead. – Michael Jun 4 '11 at 22:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.