TeamCity On-Premises 2024.03 Help

Install TeamCity Agent

Before installing a TeamCity build agent, make sure to read the system requirements.

Choose a convenient installation option:

Install from Windows Executable File

  1. Open the Agents page in TeamCity.

  2. Click Install Build Agents and select Windows Installer to download the installer.

  3. On the agent machine, run agentInstaller.exe and follow the installation instructions.

Ensure that the user account used for running the agent service has proper permissions.

Install from ZIP File

This option allows you to download agents as archives that can copied to your agent machines.

Available Agent Distributions

You can choose to download full or minimal agent distributions.

  • The minimal agent distribution is a regular build agent with no plugins. The minimal agent downloads all required plugins upon its first startup.

  • The full agent distribution includes relevant versions of all plugins currently enabled on the server. This makes the full distribution archive larger but significantly reduces the time spent on the first agent run.

Full agents are preferable if you use scripts for creating agent images (for example, in cloud profiles). All cloud instances with full agents are synchronized with the server from the moment they start, and can run builds right away.

Full agent distributions are also available in two variations:

  • Regular agent distributions without Java Development Kits. If you download and install this variation, make sure that the agent machine has the required JDK version installed (see Supported Java Versions) and the JRE_HOME or JAVA_HOME environment variables point to the correct installation.

  • Distributions bundled with OS-specific JDKs. These distributions allow you to install an agent and a JDK it requires in a single go. To download these distributions, add required JDK versions on the Administration | Agent JDKs page and wait for TeamCity to build a related agent distribution.

    Add Agent JDK

    Visit the Supported Platforms and Environments documentation article for the information on which Java versions are supported by TeamCity agents.

How to Install Agents from ZIP Files

  1. Open the Agents page in TeamCity and select Overview in the side navigation bar.

  2. Click the Install agent button and choose the required option.

    Agent ZIP distribution download options

    If you choose the Minimal ZIP file distribution option, the minimal OS-independent archive will start downloading.

    If you opt for the Full disributions option, you will be redirected to the Agent Distributions page that groups available agent archives into two categories: with and without a bundled JDK.

    Full agent distributions page

    Agents without bundled JDKs are available as regular archives and as Docker images.

  3. Extract the downloaded archive.

  4. Open the <installation path>\conf directory and rename the buildAgent.dist.properties file to buildAgent.properties.

  5. Edit the buildAgent.properties file to specify the TeamCity server URL (HTTPS is recommended, see these notes) and the name of the agent. Refer to this article for details on the agent configuration.

On Linux, you may need to give execution permissions to the bin/agent.sh shell script.

On Windows, you may want to install the build agent Windows service instead of using the manual agent startup.

Install via Agent Push

TeamCity provides the Agent Push functionality that allows installing a build agent to a remote host. Supported combinations of the server host platform and targets for build agents:

  • From a Unix-based TeamCity server, build agents can be installed to Unix hosts only (via SSH).

  • From a Windows-based TeamCity server, build agents can be installed to Unix (via SSH) or Windows (via psexec) hosts.

Remote Host Requirements

There are several requirements for the remote host:

Platform

Prerequisites

Linux

  • Installed JDK or JRE (see Supported Java Versions). The JVM should be reachable via the JAVA_HOME or JRE_HOME global environment variable or be in the global path (instead of being specified in, for example, user's .bashrc file).

  • The unzip utility.

  • Either wget or curl.

Windows

  • Installed JDK or JRE (see Supported Java Versions).

  • Sysinternals psexec.exe has to be installed on the TeamCity server and accessible in paths. You can install it in Administration | Tools. Note that PsExec applies additional requirements to a remote Windows host. Make sure the following preconditions are satisfied:

    • Administrative share on a remote host is enabled and accessible.

    • Remote services work (MMC snap-in can connect to the machine).

    • Remote registry works (regedit can connect to the machine via services.msc).

    • Server and workstation services are running (check via services.msc).

    • Classic network authentication is enabled.

You can test the connection by the following commands:

net use \\target\Admin$ /user:Administrator dir \\target\Admin$

Installation

Note that to access the Agent Push page, a user needs to have the Administer build agent machines permission.

  1. In the TeamCity UI, open Agents | Agent Push and click Install Agent.
    If you want to use the same settings for several target hosts, you can create a preset with these settings and use it each time when installing an agent to another remote host.

  2. In the Install agent dialog, either select a saved preset or choose "Use custom settings", specify the target host platform, and configure corresponding settings. Agent Push to a Linux system via SSH supports custom ports (the default is 22) specified as the SSH port parameter. The port specified in a preset can be overridden in the host name (for example, hostname.domain:2222), during the actual agent installation.

  3. You may need to download Sysinternals psexec.exe, in which case you will see the corresponding warning and a link to Administration | Tools where you can download it.

Last modified: 27 March 2024