How to install and Configure Jenkins on CentOS 7 and RHEL 7
Jenkins is free and open source continues integration tool and it’s code is written in Java. It provides the feature of continues build and deployment or in other words we can say it is a automation server. Jenkins are used where continues build and integration is going on for software development.
In this post i will discuss how to install and configure Jenkins on CentOS 7 and RHEL 7.
Step:1 Add Jenkins Repository
Jenkins package is not available in the default CentOS and RHEL repositories. So we need to add jenkins repository using the beneath commands.
Step:2 Install Jenkins and Java
Run the below yum command to install Jenkins and java.
Step:3 Start and Enable Jenkins Service
Run the following systemctl commands to start and enable the jenkins service
Step:4 Open the ports (80 and 8080) in OS firewall.
In case firewall is enabled on your Linux server then run the following commands to open jenkins related ports like 80 and 8080.
Step:5 Access the Jenkins Web portal
Access the URL : http://<Ip-Address-of-your-Server>:8080
Admin password is created and stored in the log file “/var/log/jenkins/jenkins.log“. Run the below command to get the password.
Copy the password and paste it in above windows and click on Continue..
In the next windows Select the option : Install suggested plugins
As we can see required plugin installation is in progress for Jenkins. Once it is done with plugin installation. It will ask to create Admin User
Click on Save and Finish
click on “Start using Jenkins”
Now Configure GitHub project using git plugin in Jenkins.
Let’s Assume I have a ‘cloudtechi’ project on GitHub and wants to integrate this project in Jenkins using git plugin.
Let’s first install git package on your machine on which you have installed Jenkins because Jenkins use git command to pull the GitHub project code.
Login to the GitHub and get the Web URL of your project.
Login to the Jenkins portal, Click on “New Item”
Select the Freestyle Project and Specify the name as per your setup, In my case I putting as “techi_project”
Click on OK
Specify the Project Description and Select Git option in Source Code Management Tab and specify the Web URL of your GitHub Project and its credentials. In the Build Tab select the option that suits your setup and then finally click on Apply.
In the Next step click on the “Build Now” option from Jenkins Dashboard to pull the GitHub Project Code.
Click on the Workspace Option to view Code or files of GitHub Project. Whenever a new code is pushed on the GitHub project it will be automatically push to Jenkins workspace with new versions.
we can also view the project workspace from terminal as well.
We can this code to deploy on other machines as well. That’s all, Basic Jenkins installation and configuration is completed ..
No comments:
Post a Comment