cg-export-db
is a Cloud Foundry CLI Plugin for migrating the data of services.
You MUST use one of these services in order to use this plugin to dump/restore backups. The list of services is:
- AWS-RDS/MySQL
- AWS-RDS/Postgres(PSQL)
You MUST be able to create one of these services in order to stream the backup. The list of the services that can store the data is:
- S3
There are five commands:
Creates a backup your data
Interactively creates an application, binds to your service, streams the data from your service to a S3 bucket.
Usage:
cf export-data
Note
You will need to already have the S3 bucket created. If you do not have it, you can do so by running:
cf create-service s3 basic YourS3BackupNameHere
Restores a backup of your data
Interactively creates an application, binds to your new service, streams the data from the S3 bucket to the new service.
Usage:
cf import-data
Download a backup to your local computer
Interactively selects the backup data from an
existing exported data dump (must run cf export-data
first) and downloads it
locally to your computer.
Usage:
cf download-backup-data
Uploads a backup from your local computer
Uploads a local file into an existing exported data dump
(must run cf export-data
first). It will get renamed appropriately upon
upload automatically.
Usage:
cf upload-backup-data YourFilePathHere
Cleans your config file and create a new one.
Usage:
cf clean-export-config
- Windows 32Bit:
cf.exe install-plugin https://github.com/18F/cg-export-db/releases/download/v0.0.2/windows-32-cg-export-db.exe
- Windows 64Bit:
cf.exe install-plugin https://github.com/18F/cg-export-db/releases/download/v0.0.2/windows-64-cg-export-db.exe
- Mac OS X:
cf install-plugin https://github.com/18F/cg-export-db/releases/download/v0.0.2/mac-cg-export-db
- Linux 32Bit:
cf install-plugin https://github.com/18F/cg-export-db/releases/download/v0.0.2/linux-32-cg-export-db
- Linux 64Bit:
cf install-plugin https://github.com/18F/cg-export-db/releases/download/v0.0.2/linux-64-cg-export-db
In E/W, you need to have:
- A S3 bucket already created to stream the dump in the same space as your database.
- If you do not have a S3 bucket, you can create one with
cf create-service s3 basic MyS3Bucket
.
- A MySQL or Postgres database already created in your space.
In GovCloud:
- A MySQL or Postgres database already created in your space.
# Login into EW cloud.gov
cf api https://api.cloud.gov && cf login --sso
# Optionally, run this if you don't have a S3 bucket.
# cf create-service s3 basic MyS3Bucket
# Go and export your data
cf export-data
# Login into GovCloud cloud.gov
cf api https://api.fr.cloud.gov && cf login --sso
# Go and import your data
cf import-data