Jenkins Interview QuestionsA list of top frequently asked Jenkins interview questions and answers are given below. 1) What is Jenkins?Jenkins is an open source continuous integration tool written in Java. It keeps a track on version control system and to initiate and monitor a build system if changes occur. 2) What is the difference between Maven, Ant and Jenkins?The most basic difference is: Maven and Ant are Build Technologies whereas Jenkins is a continuous integration tool. 3) Which SCM tools does Jenkins support?Jenkins supports the following SCM tools:
4) What is continuous integration in Jenkins?In software development, multiple developers or teams work on different segments of same web application so you have to perform integration test by integrating all modules. In order to do that an automated process for each piece of code is performed on daily bases so that all your codes get tested. This process is known as continuous integration. 5) What is the relation between Hudson and Jenkins?Hudson was the earlier name and version of current Jenkins. After some issue, the project name was changed from Hudson to Jenkins. 6) What is the requirement for using Jenkins?For using Jenkins, you have to need a source code repository which is accessible. For example, a Git repository and a working build script, e.g., a Maven script, checked into the repository. 7) What are the advantages of Jenkins?Advantage of Jenkins includes:
8) How to make sure that your project builds doesn?t break in Jenkins?You must follow these steps to make sure that your project builds doesn?t break in Jenkins:
9) How can you move or copy Jenkins from one server to another?Follow these steps to move or copy Jenkins from one server to another:
10) Which commands can be used to start Jenkins manually?You can use any one of the following commands to start Jenkins manually:
11) What are the most useful plugins in Jenkins?Some most useful plugins in Jenkins:
12) How to create a backup and copy files in Jenkins?If you want to create a back-up of your Jenkins setup, just copy the directory that saves all the setting, build artifacts and logs of Jenkins in its home directory. You can also copy a job directory to clone or replicate a job or rename the directory. 13) How can you clone a Git repository via Jenkins?If you want to clone a Git repository via Jenkins, you have to enter the e-mail and user name for your Jenkins system. Switch into your job directory and execute the "git config" command for that. 14) How can you setup Jenkins jobs?Follow these steps:
15) What are the two components Jenkins is mainly integrated with?Jenkins is integrated with these two components:
|