I have a Valkey cluster I am trying to connect to from my local Windows machine via an SSH tunnel and I would appreciate some help troubleshooting since I am unable to reach the cluster.
What I have done:
Setup the valkey cluster and opened ALL traffic on all ports, inbound and outbound.
Setup the EC2 ubuntu instance and opened ALL traffic on all ports, inbound and outbound.
I am able to connect to the EC2 ubuntu instance from my local machine executing:
ssh -i valkey-jumper.pem ubuntu@[ec2_ip]I am able to telnet to the valkey cluster from the EC2 instance:
telnet [valkey-cluster] 6379
All of the connections appear to be open and working, however when I open the SSH tunnel and try to connect to localhost:6379 I get a timeout when I try to ping the valkey cluster.
This is the ssh command I am using:
ssh -i valkey-jumper.pem -N -L 6379:[valkey-cluster]:6379 ubuntu@[ec2_ip]