Hi Vladimir
There is no other Backup Software installed on the Veeam-Server (which is a physiscal Windows 2008 R2 Server).
This is a new/clean installation of Windows, the Tape-Drive is a HP LTO Ultrium 3 internal SAS Drive (Single Drive) withe the most current HP Driver installed.
The Tape was online and there was a free tape loaded, when the backup copy job startet.
Here's some more info on our setup:
When we first setup those jobs, we had to select the guests directly from the ESXi Server, since vcenter wasn't installed at the time.
Back we had one backup job executet successfully including a successful bcopy to tape.
Later we installed vcenter (on the same Server as Veeam is installed) and therefor had to change the selection of the virtual serves in the jobs, since we wanted them to be selected through vcenter rathen then directly from the esx server.
Additionally we run a powerhsell-based script 15 minutes, before each daily active full job starts, this script is inventoring the Tapedrive and then checks whether the tape currently loaded is marked as "unrecognized" or not. If the tape is marked "unrecognized", the tape will be erased.
Here's the script we use:
Code: Select all
Add-PSSnapin VeeamPSSnapin
Start-VBRTapeInventory -Library "Hewlett Packard LTO Ultrium-3 drive"
Start-Sleep -s 30
$tape = Get-VBRTapeMedium | Where-Object {$_.IsBelongUnrecognizedMediaPool -like "True"}
Erase-VBRTapeMedium -Medium $tape -Confirm:$false -runasync
The reason for this is, that most of the tapes are allready formatted from Backup Exec (which we replaced with Veeam).
The script runs just fine.
Regards
Roger