PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

Wie übertrage ich die Produktionsdatenbank mit pgbackups zum Staging auf Heroku? Fehler bekommen

Update für Mitte 2017 (Stehlen von Takehiro Mouri Antwort von - Vereinfachen Sie den DATABSE_NAME-Teil)

Update für Mitte 2015...

Das pgbackups-Add-on ist veraltet. Kein pgbackups:transfer mehr .

So kopieren Sie eine Datenbank von yourapp zu yourapp_staging :

# turn off the web dynos in staging
heroku maintenance:on -a yourapp-staging

# if you have non-web-dynos, do them too
heroku ps:scale worker=0 -a yourapp-staging

# backup the staging database if you are paranoid like me (optional)
heroku pg:backups capture -a yourapp-staging

# execute the copy
heroku pg:copy your-app::DATABASE_URL DATABASE_URL -a yourapp-staging

Wenn es fertig ist, aktivieren Sie das Staging wieder:

# this is if you have workers, change '1' to whatever
heroku ps:scale worker=1 -a yourapp-staging

heroku maintenance:off -a yourapp-staging

(Quelle:https:// devcenter.heroku.com/articles/upgrading-heroku-postgres-databases#upgrade-with-pg-copy-default )