Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How does one see what data is stored in the RDS database?

Running our app on Amazon RDS. How does one review / inspect data in the database? For example, how can I get a list of articles?

My app is running on Ruby on Rails and on Heroku. One method I thought of, is by running the Heroku console command.

Is there a better way to see what data is stored in the RDS database?

like image 633
Christian Fazzini Avatar asked Aug 03 '11 18:08

Christian Fazzini


People also ask

How do I check my AWS RDS storage?

View the VolumeBytesUsed in the RDS consoleChoose Databases from the navigation pane, and then choose the name of the DB instance that you want to monitor. Choose the Monitoring tab. From the CloudWatch section, enter [Billed] Volume Bytes Used, or choose it from the list. The storage use appears on the graph.

Where does AWS RDS store data?

Amazon RDS DB snapshots and automated backups are stored in S3. You can use the AWS Management Console, the ModifyDBInstance API, or the modify-db-instance command to manage the period of time your automated backups are retained by modifying the RetentionPeriod parameter.


1 Answers

I use MySQL Workbench to view data, run queries, and so on. It connects right up to the Amazon RDS MySQL instance using the regular MySQL settings.

Updated:

Be sure to add the ip address of the computer for which you're connecting to the RDS instance to the access list in RDS. IIRC, by default RDS instances will only accept connections from within AWS.

like image 133
nathan Avatar answered Oct 22 '22 13:10

nathan