Back up and restore YugabyteDB Anywhere
YugabyteDB Anywhere installations include configuration settings, certificates and keys, as well as other components required for creating and managing YugabyteDB universes.
You can use the YugabyteDB Anywhere yb_platform_backup.sh script to back up an existing YugabyteDB Anywhere server and restore it, when needed, for disaster recovery or migrating to a new server.
Prerequisites
To perform backups and restores in a Replicated environment, you must have a permission to run docker commands. This means that on systems with the default docker configuration, the yb_platform_backup.sh backup and restore script must be run using sudo or run as the root user (or another member of the docker group).
Back up a YugabyteDB Anywhere server
To back up the YugabyteDB Anywhere server, perform the following:
-
Copy the YugabyteDB Anywhere backup script
yb_platform_backup.shfrom theyugabyte-dbrepository using the followingwgetcommand:wget https://raw.githubusercontent.com/yugabyte/yugabyte-db/master/managed/devops/bin/yb_platform_backup.sh -
Run the
yb_platform_backup.shscript using thebackupcommand, as follows:./yb_platform_backup.sh create --output <output_path> [--data_dir <data_dir>] [--exclude_prometheus]create runs the backup of the YugabyteDB Anywhere server.
output_path specifies the location for the
.taroutput file.data_dir is optional. It specifies the data directory to be backed up. Default is
/opt/yugabyte.--exclude_prometheus is optional. It excludes Prometheus metrics from the backup.
-
Verify that the backup
.tarfile, with the correct timestamp, is in the specified output directory. -
Upload the backup file to your preferred storage location and delete it from the local disk.
Restore a YugabyteDB Anywhere server
To restore the YugabyteDB Anywhere content from your saved backup, perform the following:
-
Copy the
yb_platform_backup.shscript from theyugabyte-dbrepository using the followingwgetcommand:wget https://raw.githubusercontent.com/yugabyte/yugabyte-db/master/managed/devops/bin/yb_platform_backup.sh -
Copy the backup
.tarfile from your storage location. -
Run the
yb_platform_backup.shscript using therestorecommand:./yb_platform_backup.sh restore --input <input_path> [--destination <destination>]restore restores the YugabyteDB Anywhere content.
input_path is the path to the input
.tarfile.destination is optional. It specifies the output location for data. Default is
/opt/yugabyte.
Upon completion of the preceding steps, the restored YugabyteDB Anywhere is ready to continue managing your universes and clusters.