how to export aws rds data to local¶
install postgresql
backup and restore
pg_dump -h amazonaws.com -U aws -d database -f database.sql create user aws with password aws; create database database owner aws; grant all on database database to aws; psql -h localhost -U aws -d database -f database.sqlreferences: