Jonah Kaufman
Jonah Kaufman

Reputation: 73

How do I find hostname of RDS in AWS?

I recently opened a database instance on AWS using RDS. I can't find the IP or hostname to the database. Can somebody help? I'm using MariaDB version 10.5.13.

Upvotes: 7

Views: 19373

Answers (2)

Oguzhan Aygun
Oguzhan Aygun

Reputation: 1664

There is no specific IP adress shown to user in AWS Console, but you can find the hostname and FQDN of the DB under connectivity and security tab of the RDS Database listed as "endpoint".

Reference : https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ConnectToInstance.html

enter image description here

Upvotes: 11

adomakor412
adomakor412

Reputation: 135

This is your Public Address IDv4

If looking for EC2, then EC2> Instances> [Instance Id]> (Network tab)

ec2-[external IP address - separated].hostedawsServer.compute.amazonaws.com

example: ec2.12-345-67-89.us-east-2.compute.amazonaws.com or ec2.123-45-67-890.us-east-2.compute.amazonaws.com

Upvotes: -1

Related Questions