-
- Service Provider
- Posts: 880
- Liked: 164 times
- Joined: Aug 26, 2013 7:46 am
- Full Name: Bastiaan van Haastrecht
- Location: The Netherlands
- Contact:
Monitor and update VBA
Hello,
Now we are deploying more VBA's and we are beginnen to experience what administrative tasks there are. We have some questions regarding this:
- The API does not have upgrade/update routes, are they coming?
- Are we allowed to use and configure "unattended-upgrades" to deploy the updates by schedule?
- Are we allowed to install third party monitoring agents?
Thanks and regards,
Bastiaan
Now we are deploying more VBA's and we are beginnen to experience what administrative tasks there are. We have some questions regarding this:
- The API does not have upgrade/update routes, are they coming?
- Are we allowed to use and configure "unattended-upgrades" to deploy the updates by schedule?
- Are we allowed to install third party monitoring agents?
Thanks and regards,
Bastiaan
======================================================
Veeam ProPartner, Service Provider and a proud Veeam Legend
Veeam ProPartner, Service Provider and a proud Veeam Legend
-
- Product Manager
- Posts: 5797
- Liked: 1215 times
- Joined: Jul 15, 2013 11:09 am
- Full Name: Niels Engelen
- Contact:
Re: Monitor and update VBA
Hi Bastiaan,
1. I will bring this up to look into this for a next release.
2. You can use any 3rd party software for the package management/updates.
3. I don’t expect these packages to create issues for VBA. The only thing which is not supported is to upgrade to a newer Ubuntu version.
1. I will bring this up to look into this for a next release.
2. You can use any 3rd party software for the package management/updates.
3. I don’t expect these packages to create issues for VBA. The only thing which is not supported is to upgrade to a newer Ubuntu version.
Personal blog: https://foonet.be
GitHub: https://github.com/nielsengelen
GitHub: https://github.com/nielsengelen
-
- Service Provider
- Posts: 880
- Liked: 164 times
- Joined: Aug 26, 2013 7:46 am
- Full Name: Bastiaan van Haastrecht
- Location: The Netherlands
- Contact:
Re: Monitor and update VBA
Alright thanks Niels.
======================================================
Veeam ProPartner, Service Provider and a proud Veeam Legend
Veeam ProPartner, Service Provider and a proud Veeam Legend
-
- Product Manager
- Posts: 5797
- Liked: 1215 times
- Joined: Jul 15, 2013 11:09 am
- Full Name: Niels Engelen
- Contact:
Re: Monitor and update VBA
Hi Bastiaan,
Regarding the use of unattended upgrades, we currently have to advise not to run it unattended and use the built-in updater for the Veeam products and related packages for VBA.
We are looking into resolving this for an upcoming release to assure everything is fully supported.
Regarding the use of unattended upgrades, we currently have to advise not to run it unattended and use the built-in updater for the Veeam products and related packages for VBA.
We are looking into resolving this for an upcoming release to assure everything is fully supported.
Personal blog: https://foonet.be
GitHub: https://github.com/nielsengelen
GitHub: https://github.com/nielsengelen
-
- Service Provider
- Posts: 880
- Liked: 164 times
- Joined: Aug 26, 2013 7:46 am
- Full Name: Bastiaan van Haastrecht
- Location: The Netherlands
- Contact:
Re: Monitor and update VBA
Ok understood, let me describe how we enabled auto updates so you can take this into account when building support for it. We used the build in unattented upgrades method.
Enable the timers for auto upgrade:
Create override files and place the desired time schedules in there:
Check if the times have checked in:
Review the interval of unattended upgrades. was already set to every day:
Customize the unattended upgrade properties, it was already set to install updates and security updates:
/etc/apt/apt.conf.d/50unattended-upgrades
Unattended-Upgrade::Mail "you@email.com";
Unattended-Upgrade::Remove-Unused-Dependencies "true";
Unattended-Upgrade::Automatic-Reboot "true";
Configure email:
Configure email aliasses, this also enabled syslog messages to be relayed to email:
Enable the timers for auto upgrade:
Code: Select all
systemctl enable --now apt-daily.timer
systemctl enable --now apt-daily-upgrade.timer
Code: Select all
vi /etc/systemd/system/apt-daily.timer.d/override.conf
vi /etc/systemd/system/apt-daily-upgrade.timer.d/override.conf
Code: Select all
journalctl --since yesterday -u apt-daily.service
journalctl --since yesterday -u apt-daily-upgrade.service
systemctl cat apt-daily{,-upgrade}.timer
systemctl list-timers --all apt-daily{,-upgrade}.timer
systemctl list-units --all apt-daily.service
Code: Select all
vi /etc/apt/apt.conf.d/20auto-upgrades
APT::Periodic::Update-Package-Lists "1";
APT::Periodic::Unattended-Upgrade "1";
/etc/apt/apt.conf.d/50unattended-upgrades
Unattended-Upgrade::Mail "you@email.com";
Unattended-Upgrade::Remove-Unused-Dependencies "true";
Unattended-Upgrade::Automatic-Reboot "true";
Configure email:
Code: Select all
cat <<EOT > ~/.msmtprc
account default
host smtp-relay-host
port 25
from vba@somedomain.com
tls_starttls on
tls_certcheck off
logfile /root/.msmtp.log
aliases /etc/aliases
EOT
Code: Select all
cat <<EOT > /etc/aliases
root: you@email.com
default: you@email.com
EOT
======================================================
Veeam ProPartner, Service Provider and a proud Veeam Legend
Veeam ProPartner, Service Provider and a proud Veeam Legend
-
- Product Manager
- Posts: 5797
- Liked: 1215 times
- Joined: Jul 15, 2013 11:09 am
- Full Name: Niels Engelen
- Contact:
Re: Monitor and update VBA
Thanks for sharing!
Personal blog: https://foonet.be
GitHub: https://github.com/nielsengelen
GitHub: https://github.com/nielsengelen
-
- Service Provider
- Posts: 880
- Liked: 164 times
- Joined: Aug 26, 2013 7:46 am
- Full Name: Bastiaan van Haastrecht
- Location: The Netherlands
- Contact:
Re: Monitor and update VBA
Is auto updating / update status monitoring via API coming with v5?
Sneeking into the upcoming documentation, I see no mentioning of it: https://helpcenter.veeam.com/archive/vb ... tions.html
Sneeking into the upcoming documentation, I see no mentioning of it: https://helpcenter.veeam.com/archive/vb ... tions.html
======================================================
Veeam ProPartner, Service Provider and a proud Veeam Legend
Veeam ProPartner, Service Provider and a proud Veeam Legend
-
- Product Manager
- Posts: 5797
- Liked: 1215 times
- Joined: Jul 15, 2013 11:09 am
- Full Name: Niels Engelen
- Contact:
Re: Monitor and update VBA
Hi Bastiaan,
This is not planned for the upcoming release.
This is not planned for the upcoming release.
Personal blog: https://foonet.be
GitHub: https://github.com/nielsengelen
GitHub: https://github.com/nielsengelen
-
- VP, Product Management
- Posts: 27377
- Liked: 2800 times
- Joined: Mar 30, 2009 9:13 am
- Full Name: Vitaliy Safarov
- Contact:
Re: Monitor and update VBA
Hey Bastiaan,
If you need to monitor your backup appliances, you will be able to do that via VSPC + VSPC APIs. Remember our thread from the service providers hidden sub-forums? Will it resolve the issue?
Thanks!
If you need to monitor your backup appliances, you will be able to do that via VSPC + VSPC APIs. Remember our thread from the service providers hidden sub-forums? Will it resolve the issue?
Thanks!
Who is online
Users browsing this forum: No registered users and 1 guest