Mysql not connectable outside of localhost

petter7252

Member
Joined
Feb 19, 2008
Messages
26
Im trying to connect to Mysql outside localhost and i get this error:


Here is the user list(taken from localhost):


Any idea on how to fix?
 
Last edited by a moderator:
Try running this query:
Code:
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'yourpasswor' WITH GRANT OPTION;
Then after it runs without errors usfe this query to reload privileges table.
Code:
FLUSH PRIVILEGES;
 
Got it to work, it was the firewall.

Changing firewall btw, dont know what firewall yet, any suggestions?
 
Back
Top