Top 33 Free Jenkins Plugins and their Tutorials with step by step guide.

List of Top 25 Jenkins Plugins

Read more »

Jenkins Continous Integration with Another DevOps Tools

Enabling Jenkins integration with Silk Central Test Manager

Read more »

Jenkins Jobs Configuration Demo with Example

Build Scala Project using sbt and Jenkins Environment variables and properties defined in jenkins | Jenkins Tutorial

Read more »

Jenkins Pipeline Tutotrials with example of jenkinsfile

Jenkins Pipeline Example Code Sample

Read more »

Jenkins Administrations and Configurations Complete Reference

Jenkins Upgrade and Solution!!! How to Change Jenkins HTTP port number? Jenkins Backup Jenkins Backup and Restore Process | Jenkins Tutorial

Read more »

Scripting in Jenkins with Groovy and others Scripting Language

How to run/execute groovy script in Jenkins? Database of Groovy Script for Jenkins Automation Script to check the build status of a Jenkins job

Read more »

Jenkins Commmands Line and REST API Complete Reference

Jenkins commands lines reference from jenkins Know About Jenkins CLI | Jenkins CLI Guide Understand Jenkins CLI | Jenkins CLI Reference Jenkins Remote access API Example | Jenkins Tutorial What…

Read more »

Jenkins How to do Guide, Tips, Tricks and Troubleshootings

How to attach the jenkins build log as part of the email body? How to attach the jenkins build log as part of the email body? How to Resolve jenkins…

Read more »

How to Schedule and Trigger a Jenkins job automatically?

Method 1 – AT CERTAIN TIME AKA Build periodically Method 2 – AT CERTAIN TIME BUT Build only when there is Code changes AKA Poll SCM Method 3 – Trigger…

Read more »

Jenkins Errors and Solutions Database

Jenkins Error: Running two Java Versions – Jenkins Problem in Mac OS Jenkins Error: /usr/bin/p4 error in windows machine with jenkins Jenkins Error: Jenkins time-out while pushing to github Jenkins…

Read more »

Jenkins Error: Running two Java Versions – Jenkins Problem in Mac OS

Hi Everyone – Today we are going to discuss about how to have two version of Java Development Kit running in MAC OS and how to switch between them. This…

Read more »

How to disable/Uninstalling Jenkins a plugin when Jenkins is down using command line?

Issue A plugin is preventing Jenkins to restart I need to disable a plugin and Jenkins is down How to Uninstall a jenkins plugin using command line? Uninstalling a plugin…

Read more »

Jenkins Interview Questions and Answers – Part 6

What are the parts of the task lifecycle Execution Initialization, Configuration, Execution (Ans) Initialization, Configuration, Execution, Finalization Configuration, Execution How do you declare a typed task? task copyImages (type: Copy)…

Read more »

Jenkins Interview Questions and Answers – Part 5

The easiest way to get a plugin for Jenkins is ______________ . from inside Jenkins itself (Ans) by building it from source creating a plugin request call downloading an installer…

Read more »

Jenkins Interview Questions and Answers – Part 4

An important step in making sure that the build process is taken seriously is to ________ . never leave the build in a broken state (Ans) send out a report…

Read more »

Jenkins Interview Questions and Answers – Part 3

What is Jenkins ? Why we use Jenkins ? What are the other tools/technologies present in market other than jenkins for CI/CD ? How to move Jenkins from one server…

Read more »

Jenkins Interview Questions and Answer – Part 2

beginner Explain what is Jenkins and what is it used for Explain each of the following in the context of nodes: Master Slave Executor Agent Label Explain each of the…

Read more »

Copy a files from jenkins server to jenkins node/slave using pipeline plugins

Workarond 1 – Try to use stash/unstash, but it is bad for large files. [code]node(‘master’) {dir(‘/path/on/master/1’) {stash ‘master-stuff’}}node(‘slave’) {dir(‘/path/on/slave/1’) {unstash ‘master-stuff’}dir(‘/path/on/slave/2’) {stash ‘slave-stuff’}}node(‘master’) {dir(‘/path/on/master/2’) {unstash ‘slave-stuff’}} [/code] Read more about…

Read more »

How to execute grovvy script remotely on Jenkins server?

A Jenkins Admin can execute groovy scripts remotely by sending an HTTP POST request to /script/ url or /scriptText/. curl example via bash [code] curl -d “script=<your_script_here>” https://jenkins/script # or…

Read more »

How to run/execute groovy script in Jenkins?

Here are the List of way using you can apply grovy code in Jenkins Method -1: Groovy plugin This plugin adds the ability to directly execute Groovy code. More info…

Read more »