Product docs and API reference are now on Akamai TechDocs.
Search product docs.
Search for “” in product docs.
Search API reference.
Search for “” in API reference.
Search Results
 results matching 
 results
No Results
Filters
Migrate From Azure Disk Storage to Linode Block Storage
Traducciones al EspañolEstamos traduciendo nuestros guías y tutoriales al Español. Es posible que usted esté viendo una traducción generada automáticamente. Estamos trabajando con traductores profesionales para verificar las traducciones de nuestro sitio web. Este proyecto es un trabajo en curso.
This guide describes the process of migrating a single volume from Azure Disk Storage to Linode Block Storage using the rsync file synchronization utility. This guide focuses on migrating data disks from Azure Disk Storage and does not cover migrating operating system disks.
Block Storage Migration Workflow Diagram
The rsync command is run from a Linode instance and connects to the Azure virtual machine.
The Azure VM sends data on the Azure data disk to a Block Storage Volume attached to the Linode instance via an established rsync connection.
2a. Egress costs for the migrated data are measured when the data leaves the Azure platform. These costs are billed by Azure.
Linode Block Storage vs. Azure Disk Storage
When an Azure Virtual Machine is first created, Azure Disk Storage creates a managed disk for the operating system. One or more managed disks can also be created with the Azure Disk Storage service for temporary files and for persistent data disks.
Like Azure Disk Storage, Linode Block Storage also provides block-level storage volumes to be used with virtual machines. Unlike Azure Disk Storage, Linode Block Storage is generally used for persistent data rather than operating system, boot disks, or temporary data. These other roles are fulfilled by a Linode instance’s bundled disk, which is stored on the same host as the Compute Instance. Linode’s bundled disk storage is also more suitable for applications that feature high disk operations, like high-traffic databases.
Migration Considerations
The following are important time, cost, and security considerations to keep in mind when migrating your Azure Disk Storage drives to Linode Block Storage.
Migration Time Estimates
The time it takes to migrate a data disk is a function of the data stored on that disk, which can be substantial for larger migrations. To determine how much data is stored on your disk, run the df
command from your Azure VM:
df -h
Your data disk should appear, and the Used
column shows how much data is stored on the disk:
Filesystem Size Used Avail Use% Mounted on
/dev/sdc1 20G 4.4G 16G 23% /datadrive
Bandwidth for the transfer can vary according to different factors, including:
- Outbound bandwidth limits for your Azure VM
- Geographic distance between the Azure VM and the Linode instance.
- Disk operation limits
When planning your migration, consider performing a bandwidth test between the two locations first. Then, use the observed bandwidth from the test to calculate the estimated migration time for the data disk.
Utilities like iperf can be useful for performing this type of bandwidth measurement. Alternatively, you can create a test file on the Azure VM, migrate it following the instructions in this guide, and then view the bandwidth reported by rsync’s output.
You can use the dd
command to generate a sample 1GB test file:
sudo dd if=/dev/zero of=/datadrive/dummyfile bs=1M count=1024
Migration Egress Costs
The cost to migrate a data disk is a function of the data stored on that disk, which can be substantial for larger migrations. These costs are incurred as egress fees when the data leaves the Azure platform and are billed by Azure. Review the Migration Time Estimates section for help with determining how much data is stored on the disk, and review Azure’s documentation for assistance with calculating this amount.
Inbound traffic sent to your Linode instance and Block Storage volume have no fees incurred on the Linode platform.
Security and Firewalls
For data security reasons, files should be migrated over an encrypted connection. Rsync supports using SSH as its transport protocol, which is encrypted by default.
Both your Azure and Linode firewall settings should be configured to allow SSH traffic between the two instances. After the migration is performed, you may wish to close access to SSH between the Linode instance and Azure virtual machine.
Block Storage Migration Instructions
Prerequisites and Assumptions
This guide assumes that you have an Azure virtual machine and an attached data disk on the Azure Disk Storage service. The assumed filesystem path for the Azure data disk is /datadrive
, and the username for the Azure virtual machine is azureuser
.
Prepare a Linode Block Storage Volume
To transfer data to a Linode Block Storage volume, it must first be attached to a Linode instance. You may create a new Linode instance for the purpose of this migration (Create a Compute Instance). Alternatively, you can use an existing Linode instance for the migration.
Note If you create an instance to use for this migration, you may wish to delete it after the migration is complete. Deleting an instance that has an attached volume does not delete the volume.Follow the Add volumes product documentation to create and attach a new volume to the Linode instance. This volume should have a capacity equal to or higher than the total data stored on the source Azure disk. Review the Migration Time Estimates section for help with determining how much data is stored on the disk.
When creating the volume, Cloud Manager displays instructions for how to create a filesystem on the new volume and then mount it. Make a note of the filesystem path that it is mounted under (e.g.
/mnt/linode-block-storage-volume
).
Configure Firewalls
In this guide, the rsync command is run from a Linode instance and connects to an Azure virtual machine. This means that the Azure VM should accept inbound SSH traffic (port 22). You may also wish to specifically add the IP address of the Linode instance to the allow list for inbound traffic of the Azure VM.
Linux distributions (on both Linode instances and Azure virtual machines) can have software firewalls configured inside the instance. The following guides describe some software firewalls that your instances may use:
- Configure a Firewall with Firewalld
- How to Configure a Firewall with UFW
- A Tutorial for Controlling Network Traffic with iptables
You may also configure Cloud Firewalls to control traffic before it arrives at your computing instance. Our Cloud Firewall product documentation describes how to configure these rules. The Comparing Cloud Firewalls to Linux firewall software guide further describes the difference between network firewalls and software firewalls. Microsoft Azure’s product documentation describes how to configure Azure network firewalls.
Configure SSH Key Pair
This guide uses SSH public key authentication for the rsync connection. You must have a public and private key pair installed on the Linode instance and Azure virtual machine. The Generate an SSH Key Pair section of the SSH Public Key Authentication guide describes how to create and use a key pair.
This guide assumes the public and private keys are named id_rsa.pub
and id_rsa
, but your keys may have different names depending on the type of key pair you are using.
The public key should be uploaded to the Azure virtual machine. It should be appended to a new line of the
authorized_keys
file of the user on the Azure VM (e.g./home/azureuser/.ssh/authorized_keys
).The private key should be located on the Linode instance. It should be uploaded to the
.ssh/
directory of the user on the Linode instance (e.g./home/linodeuser/.ssh/
) and have permissions set to600
:SSH session with Linode instancechmod 600 /home/linodeuser/.ssh/id_rsa/
Initiate the Migration
These instructions implement two recommended practices:
Running rsync in a persistent process
Sending output and errors to log files
Migrations can take a long time, so having them run independently of your SSH session is important. This guide uses tmux
to create a terminal session that persists between SSH connections. By sending output and errors to log files, you can keep a record of any migration failures that may happen.
Review our tmux guide for help with other tmux commands.
Install the
tmux
utility on your Linode instance using the official tmux instructions: Installing tmux.Create a new tmux session named
block-storage-migration
. This session is used to initiate the migration:SSH session with Linode instancetmux new -s block-storage-migration
After running this command, the tmux session is immediately activated in your terminal.
Run the following commands to start migrating the contents of your Azure data disk to your Linode Block Storage Volume:
SSH session with Linode instance (bs-migration tmux session)echo "\n\nInitiating migration $(date)\n---" | tee -a bs-migration-logs.txt bs-migration-errors.txt >/dev/null rsync -chavzP --stats -e "ssh -i /home/linodeuser/.ssh/id_rsa" azureuser@AZURE_VM_IP:/datadrive/ /mnt/linode-block-storage-volume 1>>~/bs-migration-logs.txt 2>>~/bs-migration-errors.txt
Replace the following values with the actual values from your Azure VM and Linode instance:
/home/linodeuser/.ssh/id_rsa
: The name and location of the private key on your Linode instanceazureuser
: The name of the user on the Azure VMAZURE_VM_IP
: The IP address of the Azure VM/datadrive/
: The directory under which the Azure data disk is mounted/mnt/linode-block-storage-volume
: The directory under which your Linode volume is mounted
Note You may be prompted to accept the host key of the Azure VM if it is the first time that the Linode has connected to it.Command breakdown:
The first
echo
appends a message to the log files. Below is a detailed explanation of the key flags and parameters used in thersync
command:-c
: Tells rsync to use checksum comparison for file differences. Normally, rsync uses file size and modification time to decide if files need to be updated, but-c
forces it to compute checksums, which is slower but can be more accurate if you want to be sure that files match exactly.-h
: Human-readable output, which makes file sizes like transfer statistics easier to read by using units like KB and MB, rather than raw byte counts.-a
: Archive mode. This is equivalent to specifying:-rlptgoD
. The result of the-a
flag is a complete, near-exact copy of the source directory:-r
: Recursively copy directories-l
: Preserve symbolic links-p
: Retain file permissions-t
: Keep timestamps-g
: Preserve group ownership-o
: Maintain file ownership-D
: Retain device files and special files
-v
: Verbose mode. This makes rsync output more detailed information about what it is doing, and can be helpful for monitoring the progress of a large transfer or troubleshooting.-z
: Compression. This enables compression during data transfer, which can save bandwidth and speed up the transfer if the network connection is relatively slow.-P
: Combines two other flags:--progress
, which displays progress information for each file transfer.--partial
, which keeps partially transferred files if the transfer is interrupted, allowing it to resume more easily next time.
--stats
: Provides detailed statistics at the end of the transfer, such as total bytes transferred, transfer speed, and file counts.-e "ssh -i /home/linodeuser/.ssh/id_rsa"
: Specifies a remote shell (SSH) with an identity key file for authentication.azureuser@AZURE_VM_IP:/datadrive/
: This specifies the source directory you’re syncing from:azureuser
: The username on the remote server.AZURE_VM_IP
: The IP address of the remote server./datadrive/
: The path on the remote server that you want to sync. The trailing slash (/) means rsync will copy the contents of /datadrive, rather than creating a /datadrive directory in the target./mnt/linode-block-storage-volume
: The destination directory on the local machine where rsync will copy the files to. In this case, it will create an exact copy of /datadrive contents here.
Monitor the Migration
Because the stdout and stderr streams were redirected to log files, the rsync command will not produce output in the terminal. Follow these steps to inspect and monitor the contents of the logs:
To avoid interrupting the rsync process, detach from the tmux session by entering this sequence of keystrokes: Ctrl + B followed by D. You are returned to the SSH session that created the tmux session:
[detached (from session block-storage-migration)]
Use
tail -f
to inspect the log and error files and monitor any new output from them:SSH session with Linode instancetail -f block-storage-migration-logs.txt
SSH session with Linode instancetail -f block-storage-migration-errors.txt
Enter Ctrl + C to stop
tail
.You can re-enter the tmux session with the
tmux attach
command:SSH session with Linode instancetmux attach -t block-storage-migration
Verify the Migration
To verify that rsync has synced all the files as expected, re-run the rsync
command with the --dry-run –stats
flags, replacing the same values as before:
rsync -chavzP --stats --dry-run -e "ssh -i /home/azureuser/.ssh/id_rsa" azureuser@AZURE_VM_IP:/datadrive/ /mnt/linode-block-storage-volume
If the output displays files yet to be transferred, then rsync did not fully replicate the files in the destination directory. A previous successful rsync transfer should result in the following output. Note that the number of created, deleted, and transferred files are zero:
receiving incremental file list
Number of files: 2 (reg: 1, dir: 1)
Number of created files: 0
Number of deleted files: 0
Number of regular files transferred: 0
Total file size: 10.49M bytes
Total transferred file size: 0 bytes
Literal data: 0 bytes
Matched data: 0 bytes
File list size: 84
File list generation time: 0.003 seconds
File list transfer time: 0.000 seconds
Total bytes sent: 20
Total bytes received: 95
sent 20 bytes received 95 bytes 230.00 bytes/sec
total size is 10.49M speedup is 91,180.52 (DRY RUN)
Cleanup after Migration
After the migration is complete, you may determine that the Azure VM and Linode instance no longer need to communicate. You can close traffic between these servers by doing the following:
Remove the firewall access granted in the Configure Firewalls section
Revoke the SSH key used for the transfer. This is done by removing the SSH public key that was referenced from the
/home/azureuser/.ssh/authorized_keys
file on the Azure VM.
This page was originally published on