Posts

Showing posts from September, 2020

How to Installation of Jenkins

Image
Introduction: Jenkins is a free and open-source automation server. It helps automate the parts of software development related to building, testing, and deploying, facilitating continuous integration and continuous delivery. Prerequisites: 1.       One Ubuntu 18.04 server 2.       At least 1 GB of RAM. 3.       Java 8 installed ( we have also covered this part ) Step1: Install Jenkins First, add the repository key to the system: # wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo apt-key add - When the key is added, the system will return OK. Append the Debian package repository address to the server’s sources.list: # sudo sh -c 'echo deb https://pkg.jenkins.io/debian-stable binary/ > /etc/apt/sources.list.d/jenkins.list' Now update the new repository. # sudo apt-get update Finally, install Jenkins and its dependencies: # sudo apt-get install jenkins -y Bes...