Skip to content

Restoration ΒΆ

With a local .sql file or command producing SQL output, the dedicated primary database can be restored over SSH:

cat /tmp/primary.sql \
| ssh admin@primary.db.indevets.com \
    sudo -u postgres psql

Or directly from a compressed .sql.bz2 file:

bzcat /tmp/primary.sql.bz2 \
| ssh admin@primary.db.indevets.com \
    sudo -u postgres psql