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/
Last Updated on May 6, 2016