--- myst: substitutions: type: "instance" --- (instances-backup)= # How to back up instances There are different ways of backing up your instances: - {ref}`instances-snapshots` - {ref}`instances-backup-export` - {ref}`instances-backup-copy` % Include content from [storage_backup_volume.md](storage_backup_volume.md) ```{include} storage_backup_volume.md :start-after: :end-before: ``` ```{note} Custom storage volumes might be attached to an instance, but they are not part of the instance. Therefore, the content of a custom storage volume is not stored when you back up your instance. You must back up the data of your storage volume separately. See {ref}`howto-storage-backup-volume` for instructions. ``` (instances-snapshots)= ## Use snapshots for instance backup You can save your instance at a point in time by creating an instance snapshot, which makes it easy to restore the instance to a previous state. Instance snapshots are stored in the same storage pool as the instance volume itself. % Include content from [storage_backup_volume.md](storage_backup_volume.md) ```{include} storage_backup_volume.md :start-after: :end-before: ``` ### Create a snapshot `````{tabs} ````{group-tab} CLI Use the following command to create a snapshot of an instance: lxc snapshot [] % Include content from [storage_backup_volume.md](storage_backup_volume.md) ```{include} storage_backup_volume.md :start-after: :end-before: ``` For virtual machines, you can add the `--stateful` flag to capture not only the data included in the instance volume but also the running state of the instance. Note that this feature is not fully supported for containers because of CRIU limitations. ```` ````{group-tab} API To create a snapshot of an instance, send a POST request to the `snapshots` endpoint: lxc query --request POST /1.0/instances//snapshots --data '{"name": ""}' The snapshot name is optional. If you set it to an empty string, the name follows the naming pattern defined in {config:option}`instance-snapshots:snapshots.pattern`. By default, snapshots are kept forever, unless the {config:option}`instance-snapshots:snapshots.expiry` configuration option is set. To set an expiration date, add the`expires_at` field to the request data. To retain a specific snapshot even if a general expiry time is set, set the `expires_at` field to `"0001-01-01T00:00:00Z"`. If you want to replace an existing snapshot, {ref}`delete it ` first and then create another snapshot with the same name. For virtual machines, you can add `"stateful": true` to the request data to capture not only the data included in the instance volume but also the running state of the instance. Note that this feature is not fully supported for containers because of CRIU limitations. See [`POST /1.0/instances/{name}/snapshots`](swagger:/instances/instance_snapshots_post) for more information. ```` ````{group-tab} UI To create a snapshot of an instance, go to the instance detail page and switch to the {guilabel}`Snapshots` tab. Click {guilabel}`Create snapshot` to open the dialog to create a snapshot. The snapshot name is optional. If you don't specify one, the name follows the naming pattern defined in {config:option}`instance-snapshots:snapshots.pattern`. You can check and update this option by switching to the {guilabel}`Configuration` tab and selecting {guilabel}`Advanced` > {guilabel}`Snapshots`, or simply by clicking {guilabel}`See configuration`. By default, snapshots are kept forever, unless you specify an expiry date and time, or the {config:option}`instance-snapshots:snapshots.expiry` configuration option is set for the instance. For virtual machines, you can choose to create a stateful snapshot to capture not only the data included in the instance volume but also the running state of the instance. Note that this feature requires {config:option}`instance-migration:migration.stateful` to be enabled. ```` ````` (instances-snapshots-delete)= ### View, edit or delete snapshots `````{tabs} ````{group-tab} CLI Use the following command to display the snapshots for an instance: lxc info You can view or modify snapshots in a similar way to instances, by referring to the snapshot with `/`. To show configuration information about a snapshot, use the following command: lxc config show / To change the expiry date of a snapshot, use the following command: lxc config edit / ```{note} In general, snapshots cannot be edited, because they preserve the state of the instance. The only exception is the expiry date. Other changes to the configuration are silently ignored. ``` To delete a snapshot, use the following command: lxc delete / ```` ````{group-tab} API To retrieve the snapshots for an instance, send a GET request to the `snapshots` endpoint: lxc query --request GET /1.0/instances//snapshots To show configuration information about a snapshot, send the following request: lxc query --request GET /1.0/instances//snapshots/ To change the expiry date of a snapshot, send a PATCH request: lxc query --request PATCH /1.0/instances//snapshots/ --data '{ "expires_at": "2029-03-23T17:38:37.753398689-04:00" }' ```{note} In general, snapshots cannot be modified, because they preserve the state of the instance. The only exception is the expiry date. Other changes to the configuration are silently ignored. ``` To delete a snapshot, send a DELETE request: lxc query --request DELETE /1.0/instances//snapshots/ See [`GET /1.0/instances/{name}/snapshots`](swagger:/instances/instance_snapshots_get), [`GET /1.0/instances/{name}/snapshots/{snapshot}`](swagger:/instances/instance_snapshot_get), [`PATCH /1.0/instances/{name}/snapshots/{snapshot}`](swagger:/instances/instance_snapshot_patch), and [`DELETE /1.0/instances/{name}/snapshots/{snapshot}`](swagger:/instances/instance_snapshot_delete) for more information. ```` ````{group-tab} UI To see all snapshots for an instance, go to the instance detail page and switch to the {guilabel}`Snapshots` tab. From the snapshot list, you can choose to edit the name or expiry date of a specific snapshot, create an image based on the snapshot, restore it to the instance, or delete it. ```` ````` ### Schedule instance snapshots You can configure an instance to automatically create snapshots at specific times (at most once every minute). To do so, set the {config:option}`instance-snapshots:snapshots.schedule` instance option. For example, to configure daily snapshots: `````{tabs} ```{group-tab} CLI lxc config set snapshots.schedule @daily ``` ```{group-tab} API lxc query --request PATCH /1.0/instances/ --data '{ "config": { "snapshots.schedule": "@daily" } }' ``` ````{group-tab} UI ```{figure} /images/UI/snapshots_daily.png :width: 80% :alt: Configure daily snapshots ``` ```` ````` To configure taking a snapshot every day at 6 am: `````{tabs} ```{group-tab} CLI lxc config set snapshots.schedule "0 6 * * *" ``` ```{group-tab} API lxc query --request PATCH /1.0/instances/ --data '{ "config": { "snapshots.schedule": "0 6 * * *" } }' ``` ````{group-tab} UI ```{figure} /images/UI/snapshots_cron.png :width: 80% :alt: Configure snapshots daily at 6am ``` ````````` When scheduling regular snapshots, consider setting an automatic expiry ({config:option}`instance-snapshots:snapshots.expiry`) and a naming pattern for snapshots ({config:option}`instance-snapshots:snapshots.pattern`). You should also configure whether you want to take snapshots of instances that are not running ({config:option}`instance-snapshots:snapshots.schedule.stopped`). ### Restore an instance snapshot You can restore an instance to any of its snapshots. ````{tabs} ```{group-tab} CLI To restore an instance to a snapshot, use the following command: lxc restore If the snapshot is stateful (which means that it contains information about the running state of the instance), you can add the `--stateful` flag to restore the state. ``` ```{group-tab} API To restore an instance to a snapshot, send a PUT request to the instance: lxc query --request PUT /1.0/instances/ --data '{ "restore": "/" }' If the snapshot is stateful (which means that it contains information about the running state of the instance), you can add `"stateful": true` to the request data: lxc query --request PUT /1.0/instances/ --data '{ "restore": "/", "stateful": true }' See [`PUT /1.0/instances/{name}`](swagger:/instances/instance_put) for more information. ``` ```{group-tab} UI To restore an instance to a snapshot, click the {guilabel}`Restore snapshot` button ({{restore_button}}) next to the snapshot that you want to restore. If the snapshot is stateful (which means that it contains information about the running state of the instance), select {guilabel}`Restore the instance state` if you want to restore the state. ``` ```` (instances-backup-export)= ## Use export files for instance backup You can export the full content of your instance to a standalone file that can be stored at any location. For highest reliability, store the backup file on a different file system to ensure that it does not get lost or corrupted. ```{note} The UI does not currently support exporting and importing instances. ``` (instances-backup-export-instance)= ### Export an instance `````{tabs} ````{group-tab} CLI Use the following command to export an instance to a compressed file (for example, `/path/to/my-instance.tgz`): lxc export [] If you do not specify a file path, the export file is saved as `.` in the working directory (for example, `my-container.tar.gz`). ```{warning} If the output file (`.` or the specified file path) already exists, the command overwrites the existing file without warning. ``` % Include content from [storage_backup_volume.md](storage_backup_volume.md) ```{include} storage_backup_volume.md :start-after: :end-before: ``` `--instance-only` : By default, the export file contains all snapshots of the instance. Add this flag to export the instance without its snapshots. ```` ````{group-tab} API To create a backup of an instance, send a POST request to the `backups` endpoint: lxc query --request POST /1.0/instances//backups --data '{"name": ""}' You can specify a name for the backup, or use the default (`backup0`, `backup1` and so on). You can add any of the following fields to the request data: `"compression_algorithm": "bzip2"` : By default, the output file uses `gzip` compression. You can specify a different compression algorithm (for example, `bzip2`) or turn off compression with `none`. `"optimized-storage": true` : If your storage pool uses the `btrfs` or the `zfs` driver, set the `"optimized-storage"` field to `true` to store the data as a driver-specific binary blob instead of an archive of individual files. In this case, the backup can only be used with pools that use the same storage driver. Exporting a volume in optimized mode is usually quicker than exporting the individual files. Snapshots are exported as differences from the main volume, which decreases their size and makes them easily accessible. `"instance-only": true` : By default, the backup contains all snapshots of the instance. Set this field to `true` to back up the instance without its snapshots. After creating the backup, you can download it with the following request: lxc query --request GET /1.0/instances//backups//export > Remember to delete the backup when you don't need it anymore: lxc query --request DELETE /1.0/instances//backups/ See [`POST /1.0/instances/{name}/backups`](swagger:/instances/instance_backups_post), [`GET /1.0/instances/{name}/backups/{backup}/export`](swagger:/instances/instance_backup_export), and [`DELETE /1.0/instances/{name}/backups/{backup}`](swagger:/instances/instance_backup_delete) for more information. ```` ````` (instances-backup-import-instance)= ### Restore an instance from an export file You can import an export file (for example, `/path/to/my-backup.tgz`) as a new instance. ````{tabs} ```{group-tab} CLI To import an export file, use the following command: lxc import [] If you do not specify an instance name, the original name of the exported instance is used for the new instance. If an instance with that name already (or still) exists in the specified storage pool, the command returns an error. In that case, either delete the existing instance before importing the backup or specify a different instance name for the import. Add the `--storage` flag to specify which storage pool to use, or the `--device` flag to override the device configuration (syntax: `--device ,=`). ``` ```{group-tab} API To import an export file, post it to the `/1.0/instances` endpoint: curl -X POST -H "Content-Type: application/octet-stream" -T \ --unix-socket /var/snap/lxd/common/lxd/unix.socket lxd/1.0/instances If an instance with that name already (or still) exists in the specified storage pool, the command returns an error. In this case, delete the existing instance before importing the backup. See [`POST /1.0/instances`](swagger:/instances/instances_post) for more information. ``` ```` (instances-backup-copy)= ## Copy an instance to a backup server You can copy an instance to a secondary backup server to back it up. See {ref}`secondary-backup-server` for more information, and {ref}`move-instances` for instructions.