Skip to content

Instantly share code, notes, and snippets.

@ipascual
Last active January 10, 2018 20:30
Show Gist options
  • Save ipascual/f1530d4ed787d113c01df0644c5cfc89 to your computer and use it in GitHub Desktop.
Save ipascual/f1530d4ed787d113c01df0644c5cfc89 to your computer and use it in GitHub Desktop.
centos7 - install Jenkins
sudo yum install epel-release
sudo yum update
# Java
sudo yum install java-1.8.0-openjdk.x86_64
# Jenkins
cd ~
sudo wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat-stable/jenkins.repo
sudo rpm --import https://pkg.jenkins.io/redhat-stable/jenkins.io.key
sudo yum install jenkins
sudo systemctl start jenkins.service
sudo systemctl enable jenkins.service
# Setup Jenkins
Go to http://<your-Vultr-server-IP>:8080
Install Suggested plugins
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment