Como acesso remoto ao servidor mysql de qualquer host?

1

Eu segui 78246
Quando eu faço

mysql> GRANT ALL PRIVILEGES ON *.* for 'root'@'%' IDENTIFIED BY 'password';  
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'for 'root'@'%' IDENTIFIED BY 'password'' at line 1

Como faço para que funcione?

    
por rrh 08.07.2010 / 14:38

1 resposta

2

Deve ser para, não para.

GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password'; 
    
por 08.07.2010 / 14:44