aido93
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
postgres-restore-s3/restore.sh
|
@ -77,7 +77,7 @@ psql $POSTGRES_HOST_OPTS -d postgres -c "SELECT pg_terminate_backend(pg_stat_act |
|
|
psql $POSTGRES_HOST_OPTS -d postgres -c "DROP DATABASE IF EXISTS \"$POSTGRES_DATABASE\";" |
|
|
psql $POSTGRES_HOST_OPTS -d postgres -c "DROP DATABASE IF EXISTS \"$POSTGRES_DATABASE\";" |
|
|
psql $POSTGRES_HOST_OPTS -d postgres -c "CREATE DATABASE \"$POSTGRES_DATABASE\";" |
|
|
psql $POSTGRES_HOST_OPTS -d postgres -c "CREATE DATABASE \"$POSTGRES_DATABASE\";" |
|
|
psql $POSTGRES_HOST_OPTS -d postgres -c "GRANT ALL PRIVILEGES ON DATABASE \"$POSTGRES_DATABASE\" TO $POSTGRES_USER;" |
|
|
psql $POSTGRES_HOST_OPTS -d postgres -c "GRANT ALL PRIVILEGES ON DATABASE \"$POSTGRES_DATABASE\" TO $POSTGRES_USER;" |
|
|
pg_restore $POSTGRES_HOST_OPTS --no-owner -j $RESTORE_JOBS -v -d "$POSTGRES_DATABASE" dump.sql |
|
|
|
|
|
|
|
|
pg_restore $POSTGRES_HOST_OPTS --no-owner --single-transaction --no-privileges -v -d "$POSTGRES_DATABASE" dump.sql |
|
|
|
|
|
|
|
|
echo "Restore complete" |
|
|
echo "Restore complete" |
|
|
|
|
|
|