TFS 2010 PowerTools - backup plan with SCVMM

I set up a TFS environment with the following specifications:

1st server - TFS App-level + SSRS

2nd server - SCVMM

The third server is SQL Server (TFS dbs + SSRS db + SCVMM db)

The main problem is with SCVMM and Reporting backups.


Since I could not back up the SSRS encryption key through the wizard, I followed the procedure from the block where I had to manually add the SSRS databases to the backup plan in:

C: \ ProgramData \ Microsoft \ Team Foundation \ Server Configuration \ ConfigPT.xml .

<Reporting> <Database Name="ReportServer">xxxxx\TEST_TFS</Database> <Database Name="ReportServerTempDb">xxxxx\TEST_TFS</Database> </Reporting> 

This worked well, but there is no information about SCVMM .

MSDN states that if the SCVMM server is on a separate server than TFS, then the database may not be at the TFS data level, but that it should be backed up separately. However, VirtualManagerDB uses the same instance of SQL as TFS.


I feel like I can just add the database to ConfigPT.xml too, but I don't know the xml node name for the SCVMM database.

Do any of you know this information or in any other way set up SCVMM backup using PowerTools?

+4
source share
1 answer

I believe that you just provided the actual database name in XML.

 <Database Name="VirtualManagerDB">xxxxx\TEST_TFS</Database> 
+1
source

Source: https://habr.com/ru/post/1489109/


All Articles