Jenkins is an open-source automation server that can be used to automate software builds, tests, and deployments. In this guide, we will go through the steps to install Jenkins on Ubuntu.
Step 1: Update the Package List
Before installing Jenkins, it is recommended to update the package list on your Ubuntu machine. You can do this by running the following command:
sudo apt update
Step 2: Install Java
Jenkins requires Java to run. You can install Java on Ubuntu using the following command:
sudo apt install default-jdk
This will install the default version of Java on your Ubuntu machine.
Step 3: Add Jenkins Repository Key and Source
Next, you need to add the Jenkins repository key to your system using the following command:
wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo apt-key add -
After adding the key, you can add the Jenkins repository source to your system using the following command:
sudo sh -c 'echo deb https://pkg.jenkins.io/debian-stable binary/ > /etc/apt/sources.list.d/jenkins.list'
Step 4: Install Jenkins
Once you have added the Jenkins repository key and source, you can proceed with the installation of Jenkins by using the following commands:
sudo apt update sudo apt install jenkins
This will install Jenkins on your Ubuntu machine.
Step 5: Start and Enable Jenkins
After installing Jenkins, you can start and enable the Jenkins service using the following commands:
sudo systemctl start jenkins sudo systemctl enable jenkins
This will start the Jenkins service and enable it to start automatically at boot time.
Step 6: Access Jenkins Web Interface
To access the Jenkins web interface, open your web browser and enter the following URL:
http://your_server_ip_or_domain_name:8080
Replace “your_server_ip_or_domain_name” with the IP address or domain name of your Ubuntu machine. You will be prompted to enter the initial admin password, which can be found in the following file:
/var/lib/jenkins/secrets/initialAdminPassword
Follow the instructions on the Jenkins web interface to complete the installation.
Conclusion:
In this guide, we have outlined the steps to install Jenkins on Ubuntu. By following these steps, you can now use Jenkins to automate software builds, tests, and deployments on your Ubuntu machine. If you have any questions or suggestions, feel free to comment below.