#!/bin/bash
sudo apt-get install jenkins -y
echo "Jenkins installed successfully.."
# Shell script for installing Java, Jenkins and Maven in Ubuntu EC2 instance
# Command for installing Java 11
sudo apt-get update
sudo apt-get install default-jdk -y
# Command for installing maven
sudo apt-get install maven -y
# Script for Jenkins installation
#Add Repository key to the system
wget -q -O - https://pkg.jenkins.io/debian/jenkins.io.key | sudo apt-key add -
# Command for installing Java 11
sudo apt-get update
sudo apt-get install default-jdk -y
# Command for installing maven
sudo apt-get install maven -y
# Script for Jenkins installation
#Add Repository key to the system
wget -q -O - https://pkg.jenkins.io/debian/jenkins.io.key | sudo apt-key add -
# Append debian package repo address to the system
echo deb http://pkg.jenkins.io/debian- stable binary/ | sudo tee /etc/apt/sources.list.d/jenkin s.list
echo deb http://pkg.jenkins.io/debian-
sudo apt-get update
# Install Jenkins
# Install Jenkins
sudo apt-get install jenkins -y
echo "Jenkins installed successfully.."
No comments:
Post a Comment