Sono nuovo di mysql. Voglio collegarmi al server mysql usando qualunque ip io voglia. Ho letto che tutto quello che devo fare è aggiungere al file my.cnf la riga bind-address = 0.0.0.0. Questo è quello che ho fatto. Ho riavviato il server mysql e poi l'ho provato dalla riga di comando.
mysql -uroot -p'*password*' -h 127.0.0.1 --> Works
mysql -uroot -p'*password*' -h 192.168.2.4 (local ip address) --->
ERROR 1045 (28000): Access denied for user 'root'@'mguru.lnx.gr' (using password: YES)
Di seguito puoi vedere parte della sezione mysqld nel file my.cnf
[mysqld]
user = mysql
port=3306
socket = /opt/lampp/var/mysql/mysql.sock
skip-external-locking
key_buffer = 16M
max_allowed_packet = 1M
table_open_cache = 64
sort_buffer_size = 512K
net_buffer_length = 8K
read_buffer_size = 256K
read_rnd_buffer_size = 512K
myisam_sort_buffer_size = 8M
plugin_dir = /opt/lampp/lib/mysql/plugin/
#skip-networking
bind-address=0.0.0.0
Grazie in anticipo, Nikos