How to connect my node.js backend application with aws elasticache redis cluster?

1

I have a redis cluster after using that in my node.js backend code it is giving 'ENOTFOUND' error, my backend deployed in ECS docker.

can anyone please help me on why i am getting this error?

  • Are you using route 53 at any point in the setup? I ran into similar issues in the past where my ECS containers were using only the private hosted zone of my domain. So I had to duplicate my public records into my private zone and that resolved it.

  • Can you update your post with code, which shows the way that you are connecting to redis?

  • This is my code on node.js;

    var redis = require("redis"); ////const redis = require('redis'); // const client = redis.createClient({ // host:'redis endpoint url', // port:6379, // }); // client.on("error", function (error) { // console.error("Error encountered:", error); // }); // client.on("connect", function (data1) { // console.log("Redis Connection Established"); // })

    errors: Error : Error: Redis connection in broken state: connection timeout exceeded.

已提问 1 年前677 查看次数
1 回答
2

connection timeout means a connectivity issue. You need to make sure that NACL and Security Group allows ECS to connect to the Redis. In case when your Redis and ECS are in different VPCs, you also need to configure a peering and routing between them.

profile picture
专家
已回答 1 年前
profile picture
专家
Artem
已审核 1 个月前
  • ecs security group is added in inbound rule of redis security group, but still same issue is persiting, am i writing code wrong way?

    This is my code on node.js;

    var redis = require("redis"); ////const redis = require('redis'); // const client = redis.createClient({ // host:'redis endpoint url', // port:6379, // }); // client.on("error", function (error) { // console.error("Error encountered:", error); // }); // client.on("connect", function (data1) { // console.log("Redis Connection Established"); // })

    error : errno: 'ENOTFOUND',

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则