Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
May 15, 2021 01:27 pm GMT

How to connect easily to a private Amazon RDS without EC2 instances

Disclaimer.

My client owns its own domain, I haven't tested it without a domain. If you test it and got great results, please share them in the comments section below.

If you have been developing apps or you are new to AWS, you might have experienced some challenges; especially, when you are running them under a private subnet.

A common tutorial is this one from AWS:

How can I connect to a private Amazon RDS DB instance from a local machine using an Amazon EC2 instance as a bastion host?

Generally speaking, it's overcomplicated. My client has some extreme policies that force the tutorial to fail epically. We needed to do some extra workarounds in the AWS CLI to make it work, including opening the specific ports in advance (5432 [PostgreSQL], for instance).

Recently, I found an easier way that worked for us to create a Create private hosted zone with our domain and the region we preferred (eu-west-1) in Route 53, for example:

00027384723984729.eu-west-1.loc.supernova.com

Next, inside your hosted zone you need to create a new record using your RDS instance endpoint, for example:

database-1.cwfas04jasa01.eu-west-1.rds.amazonaws.com

Your new record must contain the following:

  • Record name: the name you want to give like homeapp
  • Record type: choose the option: CNAME.
  • Value: the endpoint in your RDS instance: database-1.cwfas04jasa01.eu-west-1.rds.amazonaws.com

Do click in Create records and that's all. You will get something like this:

homeapp.00027384723984729.eu-west-1.loc.supernova.com

After this, you can access your RDS instance without any extra EC2s or complex workarounds. If you face any troubles, verify if you have the DB ports are open in your firewall.

Banner credits:

http://trekintech.com/backup-recovery-for-aws-rds/


Original Link: https://dev.to/fanmixco/learn-how-to-connect-to-a-private-amazon-rds-without-ec2-instances-easily-52be

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To