Last active
December 12, 2015 12:39
-
-
Save stuartf7/4774021 to your computer and use it in GitHub Desktop.
Installing TeamCity on Amazon Linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Download TeamCity 7.1.5 | |
wget http://download.jetbrains.com/teamcity/TeamCity-7.1.5.tar.gz | |
# Extract the downloaded file | |
tar -xvzf TeamCity-7.1.5.tar.gz | |
# Tidy up the folder name and move it to a sensible location /var/teamcity | |
mv TeamCity teamcity | |
sudo mv teamcity /var/. | |
# Clean up the installation files | |
rm -rf TeamCity-* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment