How do I allow all hosts in sql

logorcehab

New member
Joined
Sep 7, 2021
Messages
2
I want to allow all hosts to my sql server, I tried using the ALL keyword but it did not work
 

You might also need to open poort 3306.
Also check the my.cnf you might need to remove the bind-address = 127.0.0.1 or put bind-address = * instead.
Don't forget to restart mysql afterwards.
 
Back
Top