TeamCity – Mac Agent Install

| | | | | |

This is a work in progress at the moment.

Start by opening Terminal

cd ~/Downloads
curl -o TeamCity-Agent.tar.gz 'https://download.jetbrains.com/teamcity/TeamCity-9.1.6.tar.gz'

If your network has a problem with SSL certificates you can try this command to download without checking the SSL certification. This is typically not suggested.

cd ~/Downloads
curl -k -o TeamCity-Agent.tar.gz 'https://download.jetbrains.com/teamcity/TeamCity-9.1.6.tar.gz'

Move the tar file to /tmp and Extract

sudo mkdir /TeamCity
cd ~/Downloads
sudo mv TeamCity-Agent.tar.gz /TeamCity
cd /TeamCity
sudo tar -xvf TeamCity-Agent.tar.gz
cd /TeamCity/buildAgent/conf

sudo cp buildAgent.dist.properties buildAgent.properties
cd /TeamCity/buildAgent/bin
sudo sh install.sh http://servername:9111/
Originally Posted on February 2, 2016
Last Updated on May 6, 2016
All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it is doing not just what it appears it is doing. I accept no responsibility for any damage you may do with this code.