Change Port for TeamCity Web Server

I installed TeamCity and made it work against my project. However, since then I realized that I do not want the administration page to be configured on port 80. I will have other sites on this server that I want on the default port. How to change the configured port?

I wandered around the configurations a bit and looked at the administration settings, but could not understand.

+58
continuous-integration port configuration teamcity
Mar 05
source share
2 answers

The port number can be edited in the file <TeamCity home>/conf/server.xml , line <Connector port="8111" protocol="HTTP/1.1" .

from Installing and Configuring TeamCity Server

+112
Mar 05 '10 at 14:32
source share

To add to the answer provided by @sfussenegger, you also need to make sure that your build agents can connect to the TeamCity server instance on the new port, otherwise your builds will fail.

To do this, you will need to modify the build agent configuration files to display the new serverUrl value. This parameter can be found in the file C:\TeamCity\buildAgent\conf\buildAgent.properties .

+46
Mar 14 '13 at 21:17
source share



All Articles