How to connect AWS Elasticache redis in local development environment — Medium
How to connect AWS Elasticache redis in local development environment
Use ssh tunneling
ssh -f -N -L6379:<redis node endpoint>:6379 <EC2 node that you use to connect to redis>
and
redis-cli -h 127.0.0.1 -p 6379
Read full article from How to connect AWS Elasticache redis in local development environment — Medium
No comments:
Post a Comment