RaspberryPi Raspbian Image預設是沒有開啟firewall防火牆的,不過要連線MySQL(Mariadb)只能使用本機端,如果有安裝apache及PHP可以考慮用phpMyAdmin,不過如果是用其它container那可能就不適用了。
想要Remote 連接Mysql方法如下:
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'yourpassword';
移除my.conf的/etc/mysql/my.cnf
#bind-address = 127.0.0.1 或 bind-address = *
restart mysql
service mysql restart
就可以從其它電腦連接使用了