I installed TFS 2015 Update 3 in a server, everything works fine until I had to install the Office Developer Tools package (VS2015 it's installed in the server).
After the installation I can't access to the web console with my http://servername:8080/tfs. The following error in IE it's: Server Error in /tfs Applicaction
In VS2015 said it's an Error 500 Internal Error Server. In VS2015 of my client machine said this error: Error in VS2015
Searching in internet about the possible solutions to this error, I tried this:
But the error persist....
Any idea?
Thanks in advance.
Please check if the MSSQLSERVER service is running. If it's stopped, just restart the service, then try it again.
Also check other SQL server related services, make sure they are all running...
Or you can simply restart the TFS server and SQL server... then try it again.
If that still not work, just try to modify the system.web
section of the TFS site Web.config
file to see the actual error for further troubleshooting. It should include the following lines...
<system.web>
<compilation debug="true" />
<customErrors mode="Off" />
...
</system.web>
Note, if you already have compilation or customErrors lines in your Web.config, then replace them with these lines.