-
-
Save Obooman/fd0d7606efc14b6da3f6e57d0b784302 to your computer and use it in GitHub Desktop.
Grant Root Remote Access MySQL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password' WITH GRANT OPTION; | |
FLUSH PRIVILEGES; | |
Edit /etc/mysql/my.cnf | |
Comment address binding bind-address = 127.0.0.1 to #bind-address = 127.0.0.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment