Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shaunthomas999/12b8ef913cf225249d701ad1a99a321e to your computer and use it in GitHub Desktop.
Save shaunthomas999/12b8ef913cf225249d701ad1a99a321e to your computer and use it in GitHub Desktop.

AWS - Jenkins - Ubuntu - Conventional Setup

Instructions

  • Start a AWS EC2 instance and connect to that using SSH
  • Execute the following commands
wget -q -O - http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key | sudo apt-key add -
echo "deb http://pkg.jenkins-ci.org/debian binary/" | sudo tee -a /etc/apt/sources.list.d/jenkins.list
sudo apt-get update -y
sudo apt-get install jenkins -y
sudo service jenkins start
  • Access Jenkins at http://PublicIPofAWS:8080

Reference

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment