Posted On October 22, 2024

SolusVm Automated Move Script

Think 0 comments
>> Dedicated >> SolusVm Automated Move Script

This is code I found in my stash this was created by nixtree Id had paid for to move vps nodes what this does it moves all the vps’s that are on the vzlist.

you would add the vps id on the vzlist that you want to move.  This comes in handy.

First step you need to make vzlist.txt and add in the vs serverids to the text file .

then you wan to create this the mov.sh file

#!
DESIP=ip here
NEWNODEID=13
for VSERVERID in `cat vzlist.txt`;
do

vzmigrate -v --ssh="-p 22" $DESIP $VSERVERID
if test $? -eq 0; then
echo "$VSERVERID completed" >> /tmp/completedlist.txt
else
echo "$VSERVERID failed" >> /tmp/completedlist.txt
fi
done
cat /tmp/completedlist.txt

Now if you want something more custom I’d recommend nixtree they are very good at what they do.

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

How to Check and Change Folder Permissions in Ubuntu Using SSH

How to Check and Change Folder Permissions in Ubuntu Using SSH If you're managing an…

Must-Have Apps on Cloudron: From Productivity to Privacy

Cloudron offers a wide variety of self-hosted applications that are perfect for a "top picks"…

How to Set Up an FTP Server and an SFTP Server on Ubuntu

If you need to transfer files to and from your Ubuntu server, there are two…