Setting up linux creation agent for teamcity

I am trying to install the build agent for linux for teamcity. I downloaded the buildAgent.zip file and extracted it. I renamed the buildAgent.dist.properties file to buildAgent.properties, as indicated in the documentation for Teamcity. I edited the file with the server URL and port number that I will use (for example: 150). On the servercity server machine, I opened port 150. I opened a command shell and ran a command. /agent.sh start, and she says that she is running, but she does not appear in the list on the teamcity server. Does anyone know why this is?

+3
source share
1 answer

Port numbers below 1024 can only be accessed by the Linux root user. Just use the default ports and everything should work fine.

Agent and server logs should help you identify the problem.

+3
source

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


All Articles