How to deploy Jenkins on Ubuntu 20.04 LTS ?
Build, Deploy & Automate anything using Jenkins . Its an opensource automation tool and have hundreds of plugins to support the continuous integration and continuous delivery. To install Jenkins in Ubuntu 20.04 LTS, following steps will be helpful: a) Add the key and the jenkins repo on the ubuntu 20.04 LTS Server and update the repo list: # wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo apt-key add - # echo "deb https://pkg.jenkins.io/debian-stable binary/" >> /etc/apt/sources.list # apt-get update b) Install openjdk latest version: # apt install openjdk-11-jre-headless # java -version c) Install the jenkins and enable it across reboot: # apt-get install jenkins -y # systemctl enable jenkins # systemctl status jenkins d) If you will check, port 8080 is open for jenkins by ja...