Auf der virtuellen Maschine lautet mein netstat:
$ netstat -a | egrep 'Proto|LISTEN'
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 localhost:6379 *:* LISTEN
tcp 0 0 *:6767 *:* LISTEN
tcp 0 0 *:sunrpc *:* LISTEN
tcp 0 0 *:ssh *:* LISTEN
tcp 0 0 *:35478 *:* LISTEN
tcp 0 0 localhost:postgresql *:* LISTEN
tcp 0 0 *:8000 *:* LISTEN
tcp6 0 0 [::]:sunrpc [::]:* LISTEN
tcp6 0 0 [::]:45424 [::]:* LISTEN
tcp6 0 0 [::]:ssh [::]:* LISTEN
Wenn ich versuche, eine Verbindung von meinem Host-Computer herzustellen, erhalte ich:
$ redis-cli -h 192.168.33.10 -p 6379
Could not connect to Redis at 192.168.33.10:6379: Connection refused
Ich weiß nicht, was ich sonst tun soll. Irgendwelche Ideen?
Vielen Dank!
virtualbox
Shamoon
quelle
quelle
Antworten:
Der Dienst hört auf 127.0.0.1
quelle
redis.conf
ich diebind
Zeile auskommentiert, damit ich auf allen Schnittstellen lauschen sollte, nicht wahr?