Jenkins Training (Integrate with ci & cd tools)
What is Jenkins?
It is an open-source automation server which enables developer developer to build , test and deploy their apps in different environments(DEV , UAT & PROD clusters) It is java software (written in java), To run the Jenkins , we need java .
Install Of Jenkins
Difeerent ways we can install jenkis , here we will see , how to install on linux.
wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat-stable/jenkins.repo
rpm --import https://pkg.jenkins.io/redhat-stable/jenkins.io.key
yum upgrade
Add required dependencies for the jenkins package
sudo yum install java-11-openjdk
sudo yum install jenkins
sudo systemctl daemon-reload
Start Jenkins
systemctl start jenkins
systemctl start jenkins
Comments
Post a Comment