After removing the subscription, I haven’t taken the complete backup as per the image. So will wait till coming Sunday and take both config data and user data.. Will try to restore on the VM.
I can download the config data from the cockpit. But how do I download the user data from the production server?
Please let me know (the complete path/process) how to transfer the data from production server to the vm, so that, will use scp / filezilla to transfer.
No, the incremental backup should be ok to restore the data.
Yes, restore the config after the USB disk is attached to the VM.
When the config is restored and the Software packages are installed you can proceed with the data restore.
No need to copy the data to a new disk.
You could just unplug the USB disk from the physical server and attach it to the VM.
You could copy the backuped files from the USB disk. You would need to mount the USB disk on the physical server to be able to access the data.
Check the attached disks to find your USB disk device:
lsblk -f
Check the mountpoint of the backup, in my test case it’s /mnt/backup-testbackup1
[root@neth ~]# ls /mnt/
backup-testbackup1
Mount the USB disk: (in my test case the disk device is /dev/sdb1)
mount /dev/sdb1 /mnt/backup-testbackup1
The backuped files look like this, there’s also a backup-config.tar.xz which is the configuration backup.
[root@neth ~]# ls /mnt/backup-testbackup1/neth/
backup-config.tar.xz duplicity-full.20250926T110947Z.manifest duplicity-full.20250926T110947Z.vol1.difftar.gz duplicity-full-signatures.20250926T110947Z.sigtar.gz
Now it should be possible to access the files under /mnt/backup-testbackup1 and download/copy them to another (USB) disk.
If you use some other disk you may configure a backup on the VM that points to the new (USB) disk. The restore process will grab the files from there.