foi finalmente capaz de fazê-lo funcionar -
edite o
/etc/mysql/my.cnf
arquivo e certifique-se, ou - você tem
bind-address = 0.0.0.0
- ou você comenta a linha
#bind-address ...
Você pode precisar adicioná-lo à seção mysqld do arquivo my.cnf:
[mysqld]
bind-address = 0.0.0.0
certifique-se de reiniciar seu servidor mysql após a alteração
$ sudo service mysql restart
Então você pode se conectar do seu host - então eu primeiro tive um erro como
$ mysql -h127.0.0.1 -P 3309 -uroot -p
Enter password:
ERROR 1130 (HY000): Host '172.16.42.2' is not allowed to connect to this MySQL server
então eu voltei para o convidado e fiz
[email protected]:~$ mysql -h127.0.0.1 -uroot -p
...
mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'172.16.42.2' WITH GRANT OPTION;
Query OK, 0 rows affected (0.00 sec)
mysql> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.00 sec)
Então não tive problemas para me conectar da máquina host
$ mysql -h127.0.0.1 -P 3309 -uroot -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 36
Server version: 5.5.44-0ubuntu0.12.04.1 (Ubuntu)