Connessione al DB da riga di comando:
mysql -h HOST -u USERNAME -pPASSWORD
Consentire accesso a MySql dall’esterno e non solo da localhost:
Edit del file /etc/mysql/my.cnf
bind-address = 0.0.0.0 Grant accesso ad un utente da qualunque host:
GRANT ALL ON *.* to user@'%' IDENTIFIED BY 'password';
Flush privileges;
Restart del servizio MySql
service mysqld restart