Jenkins is an open source continuous integration/continuous delivery and deployment (CI/CD) automation software DevOps tool written in the Java programming language. It is used to implement CI/CD workflows, called pipelines.
Please follow the steps to install Java, Jenkins, Maven on Ubuntu 22.0.4 instance. Jenkins, Maven are Java based applications, so we need to install Java first.
Pre-requisites:
Pre-requisites:
- port 8080 opened in firewall rule to access Jenkins
- Connect to EC2 instance using git bash or iTerm
Change Host Name to Jenkins
sudo hostnamectl set-hostname Jenkins
sudo hostnamectl set-hostname Jenkins
Perform update first
sudo apt update
Install Java 17
sudo apt update
Install Java 17
Verify Java Version
java -version
Maven Installation
Maven is a popular build tool used for building Java applications. Please click here to learn more about Maven. You can install Maven by executing below command:
sudo apt install maven -y
Maven is a popular build tool used for building Java applications. Please click here to learn more about Maven. You can install Maven by executing below command:
sudo apt install maven -y
Jenkins Setup
Append debian package repo address to the system
Add Repository key to the system
curl -fsSL https://pkg.jenkins.io/debian/jenkins.io-2023.key | sudo tee \
/usr/share/keyrings/jenkins-keyring.asc > /dev/null
echo deb [signed-by=/usr/share/keyrings/jenkins-keyring.asc] \
https://pkg.jenkins.io/debian binary/ | sudo tee \
/etc/apt/sources.list.d/jenkins.list > /dev/null
Update Ubuntu package
sudo apt update
sudo apt install jenkins -y
The above screenshot should confirm that Jenkins is successfully installed.
Access Jenkins in web browser
Now Go to AWS console. Click on EC2, click on running instances link. Select the checkbox of EC2 you are installing Java and Jenkins. Click on Action. Copy the value from step 4 that says --> Connect to your instance using its Public DNS:
Access Jenkins in web browser
Now Go to AWS console. Click on EC2, click on running instances link. Select the checkbox of EC2 you are installing Java and Jenkins. Click on Action. Copy the value from step 4 that says --> Connect to your instance using its Public DNS:

Now go to browser. enter public dns name or public IP address with port no 8080.
Unlock Jenkins
You may get screen, enter the below command in Git bash( Ubuntu console)
You may get screen, enter the below command in Git bash( Ubuntu console)
Also create user name and password.
enter everything as admin. at least user name as admin password as admin
That's it. You have setup Jenkins successfully šPlease watch the steps in our YouTube channel:







429B75DD18
ReplyDeletekiralık hacker
hacker arıyorum
kiralık hacker
hacker arıyorum
belek
This guide is super helpful! I was struggling with unlocking Jenkins and setting up plugins, and your step-by-step instructions made it much easier. I’m curious—do you recommend any specific Maven versions for compatibility with Jenkins pipelines? For anyone exploring jenkins, this is a great reference.
ReplyDeleteThanks for the clear setup guide. I followed these steps to install jenkins on my Ubuntu 22 EC2 instance, and everything worked without errors. Adding the key and repo commands was the most useful part for me.
ReplyDelete