Backup
- Stop the required VPS in SolusVM > Virtual Servers > VPS > Shutdown. Note VMID of VPS, for example, it is vm101.
Connect to the source slave node over SSH.
Find a logical volume of the VPS:
# lvdisplay | grep "LV Path" | grep "vm101"
LV Path
/dev/solusvm/vm101_img
Create a copy of the logical volume:
# dd if=/dev/yourvg/vm101_img | gzip | dd of=/home/vm101_backup.gz bs=4096
Restore
- Create a VPS at SolusVM > Virtual Servers > Add Virtual Server. Let's assume the VPS ID is vm101
Restore the copy to the created logical volume:
# dd if=/home/vm101_backup.gz | gzip -d | dd of=/dev/yourvg/vm101_img bs=4096