I want to externalize the latest DUMP files with Veeam Agent Linux but I encounter an error with the application of the config. Can you help me ?
Code: Select all
$date = (get-date).AddDays(-1).ToString("yyyyMMdd")
$selectedfiles = "/data/oracle/"
$includemask = "$($date)*bmp"
$job = Get-VBRComputerBackupJob -Name oracle_srv
$filesoptions = New-VBRSelectedFilesBackupOptions -OSPlatform Linux -BackupSelectedFiles -SelectedFiles $selectedfiles -IncludeMask $includemask
Set-VBRComputerBackupJob -job $job -BackupType SelectedFiles -SelectedFilesOptions $filesoptions
Code: Select all
Set-VBRComputerBackupJob : The specified computer backup job is invalid.
Application Aware Image processing options:
BackupObject 'oracle_srv.toto.com':
Failed to validate computer backup job. OracleProcessingOptions are not supported by computer backup job of Linux type
Au caractère Ligne:1 : 1
+ Set-VBRComputerBackupJob -job $job -BackupType SelectedFiles -Selecte ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Set-VBRComputerBackupJob], ArgumentException
+ FullyQualifiedErrorId : System.ArgumentException,Veeam.Backup.PowerShell.Cmdlets.SetVBRComputerBackupJob
Thank you