Skip to content

Commit 8aee778

Browse files
M #-: Updated Veeam known issues (#478)
1 parent 3f8141c commit 8aee778

File tree

1 file changed

+12
-0
lines changed
  • content/product/cluster_configuration/backup_system

1 file changed

+12
-0
lines changed

content/product/cluster_configuration/backup_system/veeam.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,18 @@ Here is a list of the known issues and limitations affecting the Veeam integrati
117117
- Alpine virtual machines cannot be backed up.
118118
- During image transfers, you may see a warning message stating ``Unable to use transfer URL for image transfer: Switched to proxy URL. Backup performance may be affected``. This is expected and shouldn't affect performance.
119119
- Spaces are not allowed in Virtual Machine names in the integration, so avoid using them (even if they are allowed in OpenNebula itself), otherwise you may face issues when performing an in-place restores of said VMs.
120+
- If the backup chain is deleted in OpenNebula and an incremental is attempted from Veeam, the data may be corrupt, so a manual Full Backup is needed from Veeam, otherwise the incremental data will be missing.
121+
- After performing a backup using Veeam VNC may stop working for the backed up VM and some configuration attributes may be lost. If facing this issue, please apply the following change to the ``/usr/lib/one/ovirtapi-server/controllers/backup_controller.rb`` file in the backup server at lines ~247-251 (the 2 ``vm.updateconf`` calls need the ``true`` statement at the end). Then, restart the apache2/httpd service:
122+
123+
```ruby
124+
...
125+
vm.updateconf('BACKUP_CONFIG = ["MODE"="INCREMENT", "KEEP_LAST"="2",' \
126+
'BACKUP_VOLATILE"="YES"]', true)
127+
else
128+
LOGGER.info 'Backup volatiles disabled.'
129+
vm.updateconf('BACKUP_CONFIG = ["MODE"="INCREMENT", "KEEP_LAST"="2"]', true)
130+
...
131+
```
120132

121133
## Architecture
122134

0 commit comments

Comments
 (0)