Question: How to upgrade? #1922
-
Hi, I use the version from the master branch and I see it gets updated frequently. Is there security benefit to doing git pull when there are new commits or should I stick to the release which was in 2019? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Here's what I suggest (this is just one person's opinion): Start with a fresh If there have been more than a few commits by the time you're ready to deploy more servers, use a fresh Renaming an
There is no mechanism to update a deployed AlgoVPN server other than adding and removing users. The server will take care of updating software packages for security and bug fixes as updated packages are released by Ubuntu. |
Beta Was this translation helpful? Give feedback.
Here's what I suggest (this is just one person's opinion):
Start with a fresh
git clone
and deploy your server(s). Keep the copy around for the life of your server(s) so that you can./algo update-users
if needed. Don't usegit pull
or you could break things.If there have been more than a few commits by the time you're ready to deploy more servers, use a fresh
git clone
again so you get all the changes.Renaming an
algo
directory can break it due to the way the Python virtual environment is created so I clone into uniquely named directories:There is no mechanism to update a deployed AlgoVPN server other than adding and …