Questions tagged [amazon-rds]

Amazon RDS, known as the Amazon Relational Database Service, is a convenient web service that simplifies the process of establishing, managing, and expanding a relational database within a cloud environment.

Accessing AWS RDS from a Node.js local server

I'm encountering an ETIMEDOUT 172.31.97.43:5432 error when attempting to test my nodejs express app with a postgres database on my local machine connecting to AWS RDS. On AWS RDS, I have configured the necessary settings such as; Configuring Inbound and ...

insufficient accuracy in time measurement using asTime()

I am trying to update the timestamp column in my Grid view to display the date and time in my local timezone. [ 'format' => [ 'class' => 'yiii18nFormatter', 'timeZone' => 'Asia/Singapore', ], 'attribute' => 'created_ ...

Having trouble connecting to the database server on `postgres` port `5432` using an AWS-RDS URL

Tools in my arsenal: nextJS; prisma; postgresql; docker; I've been attempting to establish a connection with the database by using this URL: DATABASE_URL="postgresql://USER:PASSWORD@HOST:5432" The database in question is an AWS RDS Postgr ...

Utilizing a separate MySql database for write functions within CakePHP

My MySQL RDS instance needs to be scaled. I am able to launch read replicas in Amazon RDS, however, there is an issue with write operations not functioning on read replicas. Is there a way to redirect all write operations (INSERT, UPDATE, DELETE) to the ma ...