How do you recover you RDS master user username?
Solution 1:
The master username is now listed in the RDS Dashboard.
- Select the "Instances" listing and expand the DB instance.
- Press the looking glass tab on the left.
- The master username is listed in the left column.
Hope this helps!
Solution 2:
The master user name can be recovered with the rds-describe-db-instances
command.
If you are using aws cli-2, command shall become :
aws rds describe-db-instances --region ap-south-1
Solution 3:
It is 2019 now. It is 'Databases' on the sidebar, 'Configuration' on the navigation bar. And look for username.
Solution 4:
With the new updated RDS UI, the username is present in the Details section of the Instance Information screen.
- From the List of your running Instances, click an instance name to see information about the instance.
- See the "Details" section of the information screen.
scroll down in that screen to see the "Details" section.
Solution 5:
Here is the command that you can use to get the master username of your RDS:
aws --profile=prod rds describe-db-instances
--region us-east-1
--db-instance-identifier YOUR-RDS-IDENTIFIER-HERE
--query 'DBInstances[*].MasterUsername'
Note: Replace the prod
with your aws profile and YOUR-RDS-IDENTIFIER-HERE
with your rds instance identifier
It will give you the master username like this:
[
"root"
]
Hope that might help future reader.