Skip to main content

Posts

Showing posts with the label Jenkins Tutorial

How to generate Jenkins job Configuration automatically

​ Learn step by step guide on how to generate Jenkins job Configuration automatically. This tutorial is published by well known DevOps trainer - Rajesh Kumar. Job DSL Plugin The job-dsl-plugin allows the programmatic creation of projects using a DSL. Pushing job creation into a script allows you to automate and standardize your Jenkins installation, unlike anything possible before. More -  https://wiki.jenkins-ci.org/ display/JENKINS/Job+DSL+Plugin https://github.com/jenkinsci/ job-dsl-plugin/wiki/Tutorial-- -Using-the-Jenkins-Job-DSL Multi-Branch Project Plugin Read more click here Reference:- This article was originally posted on scmGalaxy.com

Jenkins Troubleshooting

Jenkins Troubleshooting ​ Jenkins is one of the important CI tools which many organization used as part of their Build and DevOps infrastructure. I am going to consolidate all the troubleshooting techniques which can be used in order to find any issues related in Jenkins.  Step 1. Take a look at Log generated by the Jenkins and plugins via  http://jenkins-master/log Note: Here you can also create your own logger and and set your custom log levels such as (severe, warning, info, config, file, finer, finest, all) Step 2. Also, you can look at /var/log/jenkins/jenkins.log via doing "tail -f /var/log/jenkins/jenkins.log" and check carefully whats breaking it.  Log file in windows - jenkins.err.log & jenkins.out.log  Read More   Click here Reference:-  This article was originally posted on  scmGalaxy.com