最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

amazon web services - Unable to connect to MySQL in AWS Lambda, but works fine locally - Stack Overflow

programmeradmin1浏览0评论

I'm deploying an AWS Lambda function that connects to a MySQL database hosted on AWS RDS. However, when I invoke the function, I get the following error message:

{
    "success": false,
    "message": "Unable to connect to any of the specified MySQL hosts"
}

Issue: The same connection string and credentials work perfectly when I run the application locally.

The RDS instance is publicly accessible and allows connections from my local machine.

I am using ASP.NET Core with MySQL.

Connection String in appsettings.json

"ConnectionStrings": {
   "DefaultConnection": "Server=anikafashionhose2update.cm7a0ysyejex.us-east-1.rds.amazonaws;Port=3306;Database=anikafashionhouse3;User=admin;Password=admin1998;"
}

I'm deploying an AWS Lambda function that connects to a MySQL database hosted on AWS RDS. However, when I invoke the function, I get the following error message:

{
    "success": false,
    "message": "Unable to connect to any of the specified MySQL hosts"
}

Issue: The same connection string and credentials work perfectly when I run the application locally.

The RDS instance is publicly accessible and allows connections from my local machine.

I am using ASP.NET Core with MySQL.

Connection String in appsettings.json

"ConnectionStrings": {
   "DefaultConnection": "Server=anikafashionhose2update.cm7a0ysyejex.us-east-1.rds.amazonaws;Port=3306;Database=anikafashionhouse3;User=admin;Password=admin1998;"
}
Share Improve this question edited 2 days ago Mark B 201k27 gold badges334 silver badges329 bronze badges Recognized by AWS Collective asked 2 days ago Md Abul KashimMd Abul Kashim 131 bronze badge 2
  • 4 If those are the actual connection settings for your database server, then you should assume at this point that your database has been accessed by other people and it needs to be deleted and recreated with a new admin password. – Mark B Commented 2 days ago
  • 1 As to the Lambda function connection issue, is the Lambda function configured to run in a VPC or not? – Mark B Commented 2 days ago
Add a comment  | 

1 Answer 1

Reset to default 0

This error typically happens because Lambda and RDS have different networking configurations. Here are the most common fixes:

  1. Security Group Issue: Add an inbound rule to your RDS security group to allow MySQL traffic (port 3306) from your Lambda's security group.

  2. VPC Configuration: Ensure your Lambda is configured to run in the same VPC as your RDS instance. Lambda → Configuration → VPC.

  3. Subnet Configuration: Make sure Lambda is using subnets that can reach your RDS instance.

  4. Connection Pooling: In Lambda, use a static connection object to avoid connection issues during cold starts:

private static readonly MySqlConnection _connection = new MySqlConnection(connectionString);

// Check connection before use
if (_connection.State != ConnectionState.Open)
{
    await _connection.OpenAsync();
}
发布评论

评论列表(0)

  1. 暂无评论