How to properly update system with myVesta
How to properly update system with myVesta
Good practice is to update your server at least one time per month with new software updates and security fixes.
Here is how to do that.
Log in to your SSH, as root.
Type:
and then:
During this process, you will be probably asked to overwrite existent conf files with new one.
Please select No (or select "keep the local version currently installed").
Those options are actually default options.
Why not to override conf files?
Here is an example.
If you override php.ini with new version - you'll override disable_functions option (that we put as best security setup) and that way you will actually downgrade security of your web system.
Other example is /etc/exim4/exim4.conf.template - we modified that file a lot, and if you install default Debian version of that file, you will completly mess up exim4 service.
During updates, it is very often that apt will also ask to overwrite /etc/clamav/clamd.conf or /etc/roundcube/config.inc.php.
Just don't do it.
Actually, there are very rare situations where you should override config files during apt upgrades... almost never.
In general, most likely you will mess up services if you install config files that comes via apt updates.
Here is how to do that.
Log in to your SSH, as root.
Type:
Code: Select all
apt update
Code: Select all
apt -y upgrade
Please select No (or select "keep the local version currently installed").
Those options are actually default options.
Why not to override conf files?
Here is an example.
If you override php.ini with new version - you'll override disable_functions option (that we put as best security setup) and that way you will actually downgrade security of your web system.
Other example is /etc/exim4/exim4.conf.template - we modified that file a lot, and if you install default Debian version of that file, you will completly mess up exim4 service.
During updates, it is very often that apt will also ask to overwrite /etc/clamav/clamd.conf or /etc/roundcube/config.inc.php.
Just don't do it.
Actually, there are very rare situations where you should override config files during apt upgrades... almost never.
In general, most likely you will mess up services if you install config files that comes via apt updates.
Tags:
Re: How to properly update system with myVesta
does this means that we can remove the default cron update after installation in vesta?
and only perform the update like you suggest above?
thanks.
and only perform the update like you suggest above?
thanks.
Re: How to properly update system with myVesta
Cron v-update-sys-vesta-all will just update myVesta.
System will not be updated.
I don't suggest to remove v-update-sys-vesta-all, in future maybe there will be urgent security update for myVesta.
-
- Posts: 7
- Joined: Tue Sep 29, 2020 6:57 am
Re: How to properly update system with myVesta
why after done all steps i see always Latest build date: 17-dec-2021 ?
Re: How to properly update system with myVesta
because it's official latest build.
after that date I made just re-builds with few micro fixes - but it's not (still) released as new version - so that's why nobody got those fixes yet.
anyway, you can 'force' update with:
to be clear - you will get all updates when I decide that it's worth to release fixes as update (new version).
after that date I made just re-builds with few micro fixes - but it's not (still) released as new version - so that's why nobody got those fixes yet.
anyway, you can 'force' update with:
Code: Select all
rm /var/cache/apt/archives/vesta_*
apt update && apt install --reinstall vesta
Re: How to properly update system with myVesta
How can I install latest build version during a fresh myvestacp installation?