oltre a ciò che JRD ha detto sul port forwarding, devi assicurarti che mysql sia in ascolto su tutte le porte e non solo localmente
modifica il /etc/mysql/my.cnf
file e assicurati, o
- hai
bind-address = 0.0.0.0
- o commenta la riga
#bind-address ...
assicurati di riavviare il tuo server MySQL dopo la modifica
$ sudo service mysql restart
Quindi puoi connetterti dal tuo host - Nel caso in cui ricevi il seguente errore
$ mysql -h127.0.0.1 -P 33600 -uroot -p
Enter password:
ERROR 1130 (HY000): Host '172.16.42.2' is not allowed to connect to this MySQL server
Poi torna dall'ospite e fai
[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)
Quindi non dovresti avere problemi a connetterti dalla macchina host
$ mysql -h127.0.0.1 -P 33600 -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)