Vesta 2.0 is coming soon! See our progress update: https://vestacp.com/docs/vesta-2-update
Where are the v-* tools ?
Where are the v-* tools ?
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 !
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 !
-
- Collaborator
- Posts: 783
- Joined: Mon May 11, 2015 8:43 am
- Contact:
- Os: CentOS 6x
- Web: apache + nginx
Re: Where are the v-* tools ?
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.
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.
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
Re: Where are the v-* tools ?
Awesome, thanks for the quick reply !