Skip to content

Instantly share code, notes, and snippets.

@mascot6699
Created January 29, 2016 09:29
Show Gist options
  • Save mascot6699/3ad60e631471fb38af0c to your computer and use it in GitHub Desktop.
Save mascot6699/3ad60e631471fb38af0c to your computer and use it in GitHub Desktop.
# For dumping the database
pg_dump -W -U <username> -h localhost <dbname> > <file_name>
# For loading the database
psql -W -U <username> -H <db_name> < <file_name>
# for uploading a file on server
scp -i server.pem <file_name> ubuntu@url:<file_name>
# for downloading a file
scp -i server.pem ubuntu@url:<file_name> <file_name>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment