Questions tagged [rds]

This tag might refer to Microsoft Remote Desktop Services, Microsoft Robotics Developer Studio, or Microsoft Remote Data Service. For Amazon RDS, please use the [tag:amazon-rds] tag instead.

This tag might refer to Microsoft Remote Desktop Services, Microsoft Robotics Developer Studio, or Microsoft Remote Data Service. For Amazon RDS, please use the tag instead.

For more info, please visit:

790 questions
40
votes
10 answers

AWS Lambda RDS connection timeout

I'm trying to write a Lambda function using Node.js which connects to my RDS database. The database is working and accessible from my Elastic Beanstalk environment. When I run the function, it returns a timeout error. Tried to increase the timeout…
Sir Codesalot
  • 7,045
  • 2
  • 50
  • 56
29
votes
1 answer

Is there a way to connect through remote desktop to a running Windows Server container?

I want to run an old .NET application in a docker windows server container (https://hub.docker.com/r/microsoft/windowsservercore/). Everything would be easy if this application didn't require an UI. Its UI does a lot of stuff and this stuff cannot…
23
votes
4 answers

How can I change the "Database Name" in AWS RDS for Postgresql?

I wanted to create a replicate of my production database for staging and created the staging DB instance from a production snapshot. However, this new instance still has the Database Name: "production-database". I was able to rename the database…
Kamilski81
  • 14,409
  • 33
  • 108
  • 161
21
votes
8 answers

How to get the IP address of RDS instance in AWS

I got the same answer everywhere on the internet regarding my question of how to get the IP address of an RDS instance in AWS, but I don't know what dig is, and how to use it. How to allocate IP address in VPC to RDS instance? Please help me find…
Amit
  • 30,756
  • 6
  • 57
  • 88
20
votes
2 answers

AWS RDS Writer Endpoint vs Reader Endpoint

I created an Amazon Aurora instance in my VPC. When the instance was created, it came with 2 endpoints, a writer and a reader endpoint. The instance is using a security policy with an ingress rule (Type: All Traffic, Protocol: All, Port: All,…
Hao Chang
  • 355
  • 2
  • 3
  • 12
20
votes
5 answers

Amazon RDS Endpoint internal

How can I make ec2 instance communicate with rds instance on aws by internal ip address or dns? I only see public dns like xxx.cehmrvc73g1g.eu-west-1.rds.amazonaws.com:3306 Will internal ipaddress will be faster than public dns? Thanks
Jerry Pham
  • 362
  • 1
  • 2
  • 11
15
votes
2 answers

Update Amazon RDS SSL/TLS Certificates - Elastic Beanstalk

AWS recently announced the need to: Update Your Amazon RDS SSL/TLS Certificates by October 31, 2019 I have a Rails application hosted with a classic Elastic Beanstalk load balancer, which connects to a Postgres DB using RDS. The required steps…
15
votes
1 answer

Creating a Route53 entry for RDS using Terraform

I am attempting to create a Route53 entry for a MySQL RDS instance but having issues with the :3306 at the end of the RDS endpoint returned from Terraform. resource "aws_db_instance" "mydb" { allocated_storage = 10 engine …
Cale
  • 313
  • 2
  • 3
  • 7
15
votes
1 answer

How do I restore RDS snapshot into a cloudformation?

I want to restore an RDS instance from a snapshot and have it replace an instance in a cloudformation. Let's say I have one EC2 instance connected to one RDS instance in a cloud formation and I want to restore the RDS instance from a…
14
votes
3 answers

Configure Postgres application users with Terraform for RDS

Terraform allows you to define Postgres master user and password with the options username and password. But there is no option to set up an application postgres user, how would you do that?
Mahoni
  • 7,088
  • 17
  • 58
  • 115
13
votes
2 answers

RDS instance access from Ec2 instance from different region

I have following setup on AWS One RDS instance in Region 1. One Ec2 instance in Region 2. EC2-Security Group sgrg2 in Region 2. I am trying to access RDS from EC2 by adding Security Group to RDS instance list. It is not authorizing. Moreover,…
Learn More
  • 1,535
  • 4
  • 29
  • 51
12
votes
1 answer

Issue with AWS DMS continuous replication

I am trying to create a DMS task to migrate data from RDS Postgres instance to S3 bucket. The full load works all fine, but the continuous replication is failing. Its giving this error: "logical decoding requires wal_level >= logical" When I checked…
Zinx
  • 2,291
  • 3
  • 28
  • 37
12
votes
1 answer

How to know the list of connections open on a remote MySQL AWS RDS machine

Where can I find the list of connections open on a remote MySQL AWS RDS machine netstat -n |grep 3306|grep ESTABLISHED|wc -l I do this to find connections which are ESTABLISHED locally, how do I do this for remote instance.
Sam
  • 8,387
  • 19
  • 62
  • 97
11
votes
2 answers

R: How to read selected columns from a RDS files?

How to read part of the data from very large files? The sample data is generated as: set.seed(123) df <- data.frame(replicate(10, sample(0:2000, 15 * 10^5, rep = TRUE)), replicate(10, stringi::stri_rand_strings(1000, 5))) head(df) #…
Prradep
  • 5,506
  • 5
  • 43
  • 84
11
votes
0 answers

Object or Provider is not able to perform the requested operation

I am trying to run the classic asp application which uses RDS (Remote data service) on Windows Server 2008 Following is the code written in…
RemS
  • 272
  • 1
  • 9
1
2 3
52 53