Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change port for TeamCity web server

I installed TeamCity and got it working against my project. However, I have since realized that I don't want it the administration page to be configured on port 80. I'm going to have other websites on that server that I want on the default port. How do I change the configured port?

I wandered around the configurations a bit and looked through the administration settings but couldn't figure it out.

like image 568
RationalGeek Avatar asked Mar 05 '10 14:03

RationalGeek


People also ask

What port does TeamCity use?

Server port: 8111 is the default port.

Does TeamCity use Tomcat?

TeamCity Server is a JVM web application that runs in a Tomcat application server.


2 Answers

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

from Installing and Configuring the TeamCity server

like image 61
sfussenegger Avatar answered Sep 30 '22 04:09

sfussenegger


To add to the answer provided by @sfussenegger you will also need to make sure that your build agents can still connect to the TeamCity server instance on the new port, or else your builds won't run.

To do this, you'll need to change the build agent configuration files to reflect the new serverUrl value. You can find this setting in the C:\TeamCity\buildAgent\conf\buildAgent.properties file.

like image 27
dthrasher Avatar answered Sep 30 '22 04:09

dthrasher