Installation & Configuration Steps through AWS Cloud:
Login into your AWS Account & create one Ubuntu Instance as we do
Access it through PUTTY as we do
Now use given commands:
ubuntu
sudo apt-get update
sudo apt-cache search openjdk
sudo apt-get install openjdk-8-jdk
java -version
wget -q -O [<https://pkg.jenkins.io/debian-stable/jenkins.io.key>](<https://pkg.jenkins.io/debian-stable/jenkins.io.key>) | sudo apt-key add -
sudo vi /etc/apt/sources.list
#Add the below line in the end of the file
deb <https://pkg.jenkins.io/debian-stable> binary/
sudo apt-get update
clear
sudo apt-cache search jenkins
sudo apt-cache madison jenkins
→ To check all the available versions of Jenkinssudo apt-get install jenkins -y
→ To install the latest version of Jenkinsclear
sudo service jenkins status
→ press “Q” on keyboard to exitclear
sudo cat paste_the_copied_path
commandHere's a crisp and structured Notion note covering all the commands from your original article while keeping it clear and beginner-friendly.
Jenkins is an open-source automation server widely used for CI/CD (Continuous Integration and Continuous Deployment). This guide walks you through installing and configuring Jenkins on an Ubuntu/Linux system via AWS Cloud.
Before starting, ensure you have:
✅ AWS account with an Ubuntu EC2 instance created
✅ SSH client like Putty to access the instance
✅ Root or sudo access