--- discourse: lxc:[Migrate from one storage pool to another](10877) --- (howto-storage-move-volume)= # How to move or copy storage volumes You can {ref}`copy ` or {ref}`move ` custom storage volumes from one storage pool to another, or copy or rename them within the same storage pool. To move instance storage volumes from one storage pool to another, {ref}`move the corresponding instance ` to another pool. When copying or moving a volume between storage pools that use different drivers, the volume is automatically converted. (storage-copy-volume)= ## Copy custom storage volumes Use the following command to copy a custom storage volume: lxc storage volume copy / / Add the `--volume-only` flag to copy only the volume and skip any snapshots that the volume might have. If the volume already exists in the target location, use the `--refresh` flag to update the copy (see {ref}`storage-optimized-volume-transfer` for the benefits). Specify the same pool as the source and target pool to copy the volume within the same storage pool. You must specify different volume names for source and target in this case. When copying from one storage pool to another, you can either use the same name for both volumes or rename the new volume. (storage-move-volume)= ## Move or rename custom storage volumes Before you can move or rename a custom storage volume, all instances that use it must be {ref}`stopped `. Use the following command to move or rename a storage volume: lxc storage volume move / / Specify the same pool as the source and target pool to rename the volume while keeping it in the same storage pool. You must specify different volume names for source and target in this case. When moving from one storage pool to another, you can either use the same name for both volumes or rename the new volume. ## Copy or move between cluster members For most storage drivers (except for `ceph` and `ceph-fs`), storage volumes exist only on the cluster member for which they were created. To copy or move a custom storage volume from one cluster member to another, add the `--target` and `--destination-target` flags to specify the source cluster member and the target cluster member, respectively. ## Copy or move between projects Add the `--target-project` to copy or move a custom storage volume to a different project. ## Copy or move between LXD servers You can copy or move custom storage volumes between different LXD servers by specifying the remote for each pool: lxc storage volume copy :/ :/ lxc storage volume move :/ :/ You can add the `--mode` flag to choose a transfer mode, depending on your network setup: `pull` (default) : Instruct the target server to pull the respective storage volume. `push` : Push the storage volume from the source server to the target server. `relay` : Pull the storage volume from the source server to the local client, and then push it to the target server. If the volume already exists in the target location, use the `--refresh` flag to update the copy (see {ref}`storage-optimized-volume-transfer` for the benefits). (storage-move-instance)= ## Move instance storage volumes to another pool To move an instance storage volume to another storage pool, {ref}`stop the instance ` that contains the storage volume you want to move. `````{tabs} ````{group-tab} CLI Use the following command to move the instance to a different pool: lxc move --storage ```` ````{group-tab} UI Navigate to the overview page of the selected instance, and click on the {guilabel}`Move` button in the top right corner. ```{figure} /images/instances/instance_overview_page.png :width: 80% :alt: LXD Instance overview page ``` Within the move modal, click {guilabel}`Move instance root storage to a different pool` to view available storage pools to move to. ```{figure} /images/instances/move_instance_modal.png :width: 80% :alt: LXD Instance root storage move method modal ``` Click {guilabel}`Select` in the row of the target storage pool for the move. ```{figure} /images/instances/move_instance_modal_2.png :width: 80% :alt: LXD Instance root storage move pool selection modal ``` On the resulting confirmation modal, click {guilabel}`Move` to finalize the process. ```{figure} /images/instances/move_confirmation_modal.png :width: 80% :alt: LXD Instance root storage confirmation modal ``` ```` `````