Reputation: 65
I have installed Team foundation server 2012 express.But i want TFS Express to use SQL Server Express installed on another PC. Is there any option so I can connect TFS Express 2012 to SQL Server Express installed on another PC?
Upvotes: 0
Views: 3996
Reputation: 2744
You can use TFSConfig.exe command as the following:
Open cmd as administrator
Navigate to:
C:\Program Files\Microsoft Team Foundation Server 11.0\Tools directory (cd C:\Program Files\Microsoft Team Foundation Server 11.0\Tools
tfsconfig unattend /configure /type:basic /inputs:SqlInstance=PC2\TFSSQLExpress
PC2: is your second machine.
TFSSQLExpress: is the instance name.
But there are a lot considerations you have to take:
be careful to to open the command line and running TFSConfig.exe with user account that has permission on the other machine so it can install DB there, it's better if you use Domain Controller account.
Be careful that the SQL enabled for Remote Connection and the SQl Server Network Configuration.
Make sure the configuration success.
Upvotes: 5