Page 1 of 1

Where are the v-* tools ?

Posted: Wed Nov 11, 2015 4:09 pm
by xoy74
Hello,

I am helping a friend move his Vesta CP from one server to another. I was able to install it without problems on the new server (CentOS 6) but when it comes to moving the data I was trying to use the instructions here https://vestacp.com/docs/#how-to-migrat ... her-server which make use of v-backup-user and v-restore-user script.
Unfortunately I can't find these on the new server. Anyone knows what I am missing ?

Thanks !

Re: Where are the v-* tools ?

Posted: Wed Nov 11, 2015 4:19 pm
by tjebbeke
You can find them at /usr/local/vesta/bin/v-...

When you are logged in as root, the directory is added to you path variable. You can check this at /root/.bash_profile.

Code: Select all

PATH=$PATH:/usr/local/vesta/bin                                                                                                                                           
export PATH  
Normally when you log out and log in again this is executed and you can use the scripts as v-... . When this is not working you can execute source /root/.bash_profile. If this isn't working again, you can update the PATH variable manually just execute PATH=$PATH:/usr/local/vesta/bin in your command line.

Re: Where are the v-* tools ?

Posted: Wed Nov 11, 2015 5:06 pm
by xoy74
Awesome, thanks for the quick reply !