Posted on

How to allow remote connection to mysql – Stack Overflow

That is allowed by default on MySQL. What is disabled by default is remote root access. If you want to enable that, run this SQL command locally: GRANT ALL PRIVILEGES ON *.* TO ‘root’@’%’ IDENTIFIED BY ‘password’ WITH GRANT OPTION; FLUSH PRIVILEGES;

Source: How to allow remote connection to mysql – Stack Overflow

Leave a Reply

Your email address will not be published. Required fields are marked *