-
Star
(309)
You must be signed in to star a gist -
Fork
(81)
You must be signed in to fork a gist
-
-
Save syafiqfaiz/5273cd41df6f08fdedeb96e12af70e3b to your computer and use it in GitHub Desktop.
| 1) Change your database RDS instance security group to allow your machine to access it. | |
| Add your ip to the security group to acces the instance via Postgres. | |
| 2) Make a copy of the database using pg_dump | |
| $ pg_dump -h <public dns> -U <my username> -f <name of dump file .sql> <name of my database> | |
| you will be asked for postgressql password. | |
| a dump file(.sql) will be created | |
| 3) restore that dump file to your local database. | |
| but you might need to drop the database and create it first | |
| $ psql -U <postgresql username> -d <database name> -f <dump file that you want to restore> | |
| the database is restored | |
| ref | |
| 1) http://stackoverflow.com/questions/31881786/how-to-pg-dump-an-rds-postgres-database | |
| 2) http://www.thegeekstuff.com/2009/01/how-to-backup-and-restore-postgres-database-using-pg_dump-and-psql/ |
💯
Very helpful, thanks
How can I proceed this step "Add your ip to the security group to access the instance via Postgres" ?
The IP's are added on the security group tied to the VPC that the RDS is attached to.
Really helpful.Thank you!
Cool!!,
The format of the pg_dump command that worked for me is -
pg_dump -h <public dns> -p <port> -U <my username> -f <name of dump file .sql> <name of my database>
Nice. Thanks.
Thanks
There are no such thing as security groups for DB instance.
There are no such thing as security groups for DB instance.
There is indeed a security group for the VPC your RDS DB is attached to.
Once you're in the admin console, looking at your RDS instance, the third column under the "Connectivity & Security" tab will show and link to the current security group.
If you scroll down just a little more, it'll also actually display to you the current inbound and outbound rules on the current group.
#2-3 worked great, thanks!
What is the #4 for though?
Works perfectly!
Thanks guys. It worked.
Thanks, works perfectly.
Im stuck on "pg_dump: saving search_path =" :(
yeah, even tho there is an error it didnt stop the restore. You could manually add it I guess, but seems to be ok for me
Excellent, but how can I do the same for a multi-tenant architecture with DB per tenant?
Just a note: if you're using a custom VPC, make sure you enable "Publicly Accessible" in your DB instance and that your VPC has an internet gateway (by attaching the gateway to the VPC ID).
Future me: also make sure your route table is actually pointing to your internet gateway: https://aws.amazon.com/premiumsupport/knowledge-center/instance-vpc-troubleshoot/ because last time it was pointing to an old one that didn't allow me to connect to anything.
I get this error "pg_dump: error: could not open output file "test_dump_20210121.sql": Permission denied"
Any ideas?
Hey @burakuytun-rightsoft it might be because your current user doesn't have the right permissions. Try running sudo chmod 666 test_dump_20210121.sql.
Thanks for this. #4 was not needed.
The extra step I had to do before restoring the dump, was create the DB, as well as the users and roles associated with it.
Adding a user for rdsadmin is necessary if it's the owner of any objects in your DB. If not, then you should be fine ignoring the error.
PS. Depending on the size (and purpose) of your DB, it might make sense to change the location of postgres' data directory
Thanks @kinduff :)
👍
If you want to restore a dump into a differently named database, make sure not use the --create option on pg_dump as it will force create the DB under that name.
If you use the --format c flag you can use pg_restore and save some bandwidth.
psql -h localhost -U user -d postgres -c "DROP DATABASE IF EXISTS newdb (FORCE)"
psql -h localhost -U user -d postgres -c "CREATE DATABASE newdb WITH OWNER = postgres ENCODING = 'UTF8'"
pg_dump --format c --blobs --no-owner --no-acl --quote-all-identifiers --verbose --dbname=postgresql://user:[email protected]/databasename --file outputfile.bak
pg_restore --verbose -h localhost -U user -d newdb outputfile.bak
Could add here the step to close all connections to the current running DB, before deletion:
psql -h localhost -U user -d postgres -c "select pg_terminate_backend(pid) from pg_stat_activity where datname='newdb'"
I am getting "AccessShareLock" on a few tables when I try to generate the dump as there are multiple active connections to the db. Is there any way to clone it to a read replica even when the connections are active?
@swapnilj01 You could try passing the --serializable-deferrable option to pg_dump. That gives you a consistent read-only snapshot of the database. I'm not entirely sure how that interacts with locks but I expect it should work.

How can I proceed this step "Add your ip to the security group to acces the instance via Postgres" ?