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
Allow remote connection | |
1) As root user execute (replace password) | |
``` | |
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password'; | |
``` | |
2) In file /etc/mysql/mariadb.conf.d/50-server.cnf comment line | |
``` | |
#bind-address = 127.0.0.1 | |
``` |