Last active
April 16, 2019 15:08
-
-
Save SilverShades02/f6fc2dd610d99bee5704c5789928970e to your computer and use it in GitHub Desktop.
Jenkins setup in Ubuntu
This file contains 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
What is Jenkins? | |
Jenkins is an open source automation server written in Java. Jenkins helps to automate the non-human part of the software development process, with continuous integration and facilitating technical aspects of continuous delivery. (Wikipedia) | |
1. Required packages | |
sudo apt-get update | |
wget -q -O - https://pkg.jenkins.io/debian/jenkins.io.key | sudo apt-key add - | |
sudo sh -c 'echo deb http://pkg.jenkins.io/debian-stable binary/ > /etc/apt/sources.list.d/jenkins.list' | |
sudo apt-get update | |
sudo apt-get install jenkins | |
2. Start jenkins service | |
service jenkins start | |
3. Command to fix permission | |
setfacl -m user:jenkins:rwx ~/ | |
setfacl -m user:jenkins:rwx /home/username | |
Link for plugins & other useful links | |
https://plugins.jenkins.io/ansicolor | |
https://plugins.jenkins.io/simple-theme-plugin | |
https://plugins.jenkins.io/publish-over-ftp | |
http://afonsof.com/jenkins-material-theme/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment