Puedo hacer ping pong Redis en el servidor:
# redis-cli ping
PONG
Pero de forma remota, tengo problemas:
$ src/redis-cli -h REMOTE.IP ping
Could not connect to Redis at REMOTE.IP:6379: Connection refused
En la configuración, obtuve el puerto estándar:
# Accept connections on the specified port, default is 6379.
# If port 0 is specified Redis will not listen on a TCP socket.
port 6379
Entonces, ¿quizás debería abrir el puerto 6379 en la máquina remota de Ubuntu? ¿Cómo lo hago?