<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Pro-Tek Blog &#187; JENKINS</title>
	<atom:link href="http://www.pro-tekconsulting.com/blog/category/jenkins/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pro-tekconsulting.com/blog</link>
	<description>For UI developers / UI designers and UI trends</description>
	<lastBuildDate>Thu, 05 Sep 2019 03:59:47 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.0.34</generator>
	<item>
		<title>HOW TO WRITE A SIMPLE JENKINS PIPELINE CODE FOR JAVA?</title>
		<link>http://www.pro-tekconsulting.com/blog/how-to-write-a-simple-jenkins-pipeline-code-for-java/</link>
		<comments>http://www.pro-tekconsulting.com/blog/how-to-write-a-simple-jenkins-pipeline-code-for-java/#comments</comments>
		<pubDate>Thu, 27 Dec 2018 07:36:50 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[JENKINS]]></category>
		<category><![CDATA[Pipeline Code for Java]]></category>

		<guid isPermaLink="false">http://www.pro-tekconsulting.com/blog/?p=2787</guid>
		<description><![CDATA[<p>How to write a simple Jenkins Pipeline Code for Java? Here is the simple Jenkins Pipeline Code for Java: Jenkinsfile (Declarative Pipeline) pipeline { agent { docker &#8216;maven:3.3.3&#8242; } stages { stage(&#8216;build&#8217;) { steps { sh &#8216;mvn &#8211;version&#8217; } } } }</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/how-to-write-a-simple-jenkins-pipeline-code-for-java/">HOW TO WRITE A SIMPLE JENKINS PIPELINE CODE FOR JAVA?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h4>How to write a simple Jenkins Pipeline Code for Java?</h4>
<p>Here is the simple Jenkins Pipeline Code for Java:<br />
Jenkinsfile (Declarative Pipeline)<br />
pipeline {<br />
agent { docker &#8216;maven:3.3.3&#8242; }<br />
stages {<br />
stage(&#8216;build&#8217;) {<br />
steps {<br />
sh &#8216;mvn &#8211;version&#8217;<br />
}<br />
}<br />
}<br />
}</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/how-to-write-a-simple-jenkins-pipeline-code-for-java/">HOW TO WRITE A SIMPLE JENKINS PIPELINE CODE FOR JAVA?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pro-tekconsulting.com/blog/how-to-write-a-simple-jenkins-pipeline-code-for-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WHAT IS SCRIPTED PIPELINE IN JENKINS?</title>
		<link>http://www.pro-tekconsulting.com/blog/what-is-scripted-pipeline-in-jenkins/</link>
		<comments>http://www.pro-tekconsulting.com/blog/what-is-scripted-pipeline-in-jenkins/#comments</comments>
		<pubDate>Thu, 27 Dec 2018 05:36:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[JENKINS]]></category>
		<category><![CDATA[Scripted Pipeline in Jenkins]]></category>

		<guid isPermaLink="false">http://www.pro-tekconsulting.com/blog/?p=2776</guid>
		<description><![CDATA[<p>What is Scripted Pipeline in Jenkins? Scripted Pipeline, like Declarative Pipeline, is built on top of the underlying Pipeline sub-system. Unlike Declarative, Scripted Pipeline is effectively a general-purpose DSL [2] built with Groovy. Most functionality provided by the Groovy language is made available to users of Scripted Pipeline, which means it can be a very [&#8230;]</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/what-is-scripted-pipeline-in-jenkins/">WHAT IS SCRIPTED PIPELINE IN JENKINS?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h4>What is Scripted Pipeline in Jenkins?</h4>
<p>Scripted Pipeline, like Declarative Pipeline, is built on top of the underlying Pipeline sub-system. Unlike Declarative, Scripted Pipeline is effectively a general-purpose DSL [2] built with Groovy. Most functionality provided by the Groovy language is made available to users of Scripted Pipeline, which means it can be a very expressive and flexible tool with which one can author continuous delivery pipelines.</p>
<p>&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/what-is-scripted-pipeline-in-jenkins/">WHAT IS SCRIPTED PIPELINE IN JENKINS?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pro-tekconsulting.com/blog/what-is-scripted-pipeline-in-jenkins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOW TO USE SONARQUBE WITH JENKINS</title>
		<link>http://www.pro-tekconsulting.com/blog/how-to-use-sonarqube-with-jenkins/</link>
		<comments>http://www.pro-tekconsulting.com/blog/how-to-use-sonarqube-with-jenkins/#comments</comments>
		<pubDate>Sat, 16 Jun 2018 02:39:48 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[JENKINS]]></category>
		<category><![CDATA[SONARQUBE WITH JENKINS]]></category>

		<guid isPermaLink="false">http://www.pro-tekconsulting.com/blog/?p=2546</guid>
		<description><![CDATA[<p>How to Use SonarQube with Jenkins SonarQube is an open source static code analysis tool that is gaining great popularity among software developers. It allows software developers to measure code quality and fix code quality issues. The SonarQube community is active and provides continuous upgrade, plug-ins, and customization information on regular intervals. Further, it is [&#8230;]</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/how-to-use-sonarqube-with-jenkins/">HOW TO USE SONARQUBE WITH JENKINS</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h4>How to Use SonarQube with Jenkins</h4>
<p>SonarQube is an open source static code analysis tool that is gaining great popularity among software developers. It allows software developers to measure code quality and fix code quality issues. The SonarQube community is active and provides continuous upgrade, plug-ins, and customization information on regular intervals. Further, it is a healthy practice to intermittently run SonarQube on the source code to fix code quality violations and reduce the technical obligation.</p>
<p>SonarQube allows the developers to track code quality which helps the developers to determine if a project is ready to be deployed in production. It also allows the developers to continuously review and perform automatic reviews and run analysis to find code quality issues. SonarQube provides a lot of other features, including the ability to record metrics, progress graphs and much more. It has inherent options to perform automated analysis and continuous integration utilizing tools such as Jenkins, Hudson, etc.</p>
<p><img class="aligncenter size-medium wp-image-2557" src="http://www.pro-tekconsulting.com/blog/wp-content/uploads/2018/06/55-300x235.jpg" alt="55" width="300" height="235" /></p>
<p><strong>STEP BY STEP INSTALLATION OF SONARQUBE ON UBUNTU 16.04</strong></p>
<p>Step1 : System update<br />
Step2 : Install jdk<br />
Step3 : Install postgresql<br />
Step 4 : Download and configure SonarQube<br />
Step 5 : Configure Systemd service</p>
<p><strong>TO INTEGRATE JENKINS WITH SONARQUBE</strong></p>
<p>Firstly, in the Jenkins server install the SonarQube plugins on Jenkins.</p>
<p>1. Go to manage plugins and install SonarQube plugin.</p>
<p>2. Go to global tool configuration and install Sonarscanner and save it.<br />
SonarQube Scanner used to start code analysis. Project configuration is read from a<br />
sonarproject.properties or passed on command line.</p>
<p>3. Configure system.<br />
<img class="aligncenter wp-image-2551 size-large" src="http://www.pro-tekconsulting.com/blog/wp-content/uploads/2018/06/33-1024x378.jpg" alt="33" width="625" height="230" /></p>
<p>Token can be generated from the sonar browser.</p>
<p>Go to <strong>administration &gt;security&gt;user&gt;generate token</strong></p>
<p>Create a new item in Jenkins and update the configure.<br />
<img class="aligncenter wp-image-2552 size-large" src="http://www.pro-tekconsulting.com/blog/wp-content/uploads/2018/06/331-1024x378.jpg" alt="33" width="625" height="230" /><br />
<img class="aligncenter wp-image-2553 size-large" src="http://www.pro-tekconsulting.com/blog/wp-content/uploads/2018/06/35-1024x327.jpg" alt="35" width="625" height="199" /><br />
<img class="aligncenter wp-image-2554 size-large" src="http://www.pro-tekconsulting.com/blog/wp-content/uploads/2018/06/45-1024x413.jpg" alt="45" width="625" height="252" /></p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/how-to-use-sonarqube-with-jenkins/">HOW TO USE SONARQUBE WITH JENKINS</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pro-tekconsulting.com/blog/how-to-use-sonarqube-with-jenkins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WHY DO WE USE PIPELINES IN JENKINS?</title>
		<link>http://www.pro-tekconsulting.com/blog/why-do-we-use-pipelines-in-jenkins/</link>
		<comments>http://www.pro-tekconsulting.com/blog/why-do-we-use-pipelines-in-jenkins/#comments</comments>
		<pubDate>Fri, 02 Feb 2018 03:20:44 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[JENKINS]]></category>
		<category><![CDATA[Pipelines in Jenkins]]></category>

		<guid isPermaLink="false">http://www.pro-tekconsulting.com/blog/?p=2397</guid>
		<description><![CDATA[<p>Why do we use Pipelines in Jenkins? Pipeline adds a powerful set of automation tools onto Jenkins, supporting use cases that span from simple continuous integration to comprehensive continuous delivery pipelines. By modeling a series of related tasks, users can take advantage of the many features of Pipeline. Code: Pipelines are implemented in code and [&#8230;]</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/why-do-we-use-pipelines-in-jenkins/">WHY DO WE USE PIPELINES IN JENKINS?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h4>Why do we use Pipelines in Jenkins?</h4>
<p>Pipeline adds a powerful set of automation tools onto Jenkins, supporting use cases that span from simple continuous integration to comprehensive continuous delivery pipelines. By modeling a series of related tasks, users can take advantage of the many features of Pipeline.</p>
<p><strong>Code:</strong> Pipelines are implemented in code and typically checked into source control, giving teams the ability to edit, review, and iterate upon their delivery pipeline.</p>
<p><strong>Durable:</strong> Pipelines can survive both planned and unplanned restarts of the Jenkins master.</p>
<p><strong>Pausable:</strong> Pipelines can optionally stop and wait for human input or approval before continuing the Pipeline run.</p>
<p><strong>Versatile:</strong> Pipelines support complex real-world continuous delivery requirements, including the ability to fork/join, loop, and perform work in parallel.</p>
<p><strong>Extensible:</strong> The Pipeline plugin supports custom extensions to its DSL and multiple options for integration with other plugins.</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/why-do-we-use-pipelines-in-jenkins/">WHY DO WE USE PIPELINES IN JENKINS?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pro-tekconsulting.com/blog/why-do-we-use-pipelines-in-jenkins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOW TO CREATE A BACKUP AND COPY FILES IN JENKINS?</title>
		<link>http://www.pro-tekconsulting.com/blog/how-to-create-a-backup-and-copy-files-in-jenkins/</link>
		<comments>http://www.pro-tekconsulting.com/blog/how-to-create-a-backup-and-copy-files-in-jenkins/#comments</comments>
		<pubDate>Fri, 02 Feb 2018 01:56:47 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[JENKINS]]></category>
		<category><![CDATA[Jenkins]]></category>

		<guid isPermaLink="false">http://www.pro-tekconsulting.com/blog/?p=2383</guid>
		<description><![CDATA[<p>How to create a backup and copy files in Jenkins? To create a backup, all you need to do is to periodically back up your JENKINS_HOME directory. This contains all of your build jobs configurations, your slave node configurations, and your build history. To create a back-up of your Jenkins setup, just copy the directory. [&#8230;]</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/how-to-create-a-backup-and-copy-files-in-jenkins/">HOW TO CREATE A BACKUP AND COPY FILES IN JENKINS?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h4>How to create a backup and copy files in Jenkins?</h4>
<p>To create a backup, all you need to do is to periodically back up your JENKINS_HOME directory. This contains all of your build jobs configurations, your slave node configurations, and your build history. To create a back-up of your Jenkins setup, just copy the directory.<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/how-to-create-a-backup-and-copy-files-in-jenkins/">HOW TO CREATE A BACKUP AND COPY FILES IN JENKINS?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pro-tekconsulting.com/blog/how-to-create-a-backup-and-copy-files-in-jenkins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOW DO YOU CREATE MULTIBRANCH PIPELINE IN JENKINS?</title>
		<link>http://www.pro-tekconsulting.com/blog/how-do-you-create-multibranch-pipeline-in-jenkins/</link>
		<comments>http://www.pro-tekconsulting.com/blog/how-do-you-create-multibranch-pipeline-in-jenkins/#comments</comments>
		<pubDate>Fri, 02 Feb 2018 01:46:01 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[JENKINS]]></category>
		<category><![CDATA[Pipeline in Jenkins]]></category>

		<guid isPermaLink="false">http://www.pro-tekconsulting.com/blog/?p=2381</guid>
		<description><![CDATA[<p>How do you create Multibranch Pipeline in Jenkins? The Multibranch Pipeline project enables you to implement different Jenkins files for different branches of the same project. In a Multibranch Pipeline project, Jenkins automatically discovers, manages, and executes Pipelines for branches which contain a Jenkins file in source control. &#160; &#160; &#160; &#160; &#160; &#160; &#160; [&#8230;]</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/how-do-you-create-multibranch-pipeline-in-jenkins/">HOW DO YOU CREATE MULTIBRANCH PIPELINE IN JENKINS?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h4>How do you create Multibranch Pipeline in Jenkins?</h4>
<p>The Multibranch Pipeline project enables you to implement different Jenkins files for different branches of the same project. In a Multibranch Pipeline project, Jenkins automatically discovers, manages, and executes Pipelines for branches which contain a Jenkins file in source control.<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/how-do-you-create-multibranch-pipeline-in-jenkins/">HOW DO YOU CREATE MULTIBRANCH PIPELINE IN JENKINS?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pro-tekconsulting.com/blog/how-do-you-create-multibranch-pipeline-in-jenkins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOW WILL YOU SECURE JENKINS?</title>
		<link>http://www.pro-tekconsulting.com/blog/how-will-you-secure-jenkins-2/</link>
		<comments>http://www.pro-tekconsulting.com/blog/how-will-you-secure-jenkins-2/#comments</comments>
		<pubDate>Wed, 06 Dec 2017 06:31:31 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[JENKINS]]></category>
		<category><![CDATA[secure Jenkins]]></category>

		<guid isPermaLink="false">http://www.pro-tekconsulting.com/blog/?p=2290</guid>
		<description><![CDATA[<p>How will you secure Jenkins? Ensure global security is on. Ensure that Jenkins is integrated with my company’s user directory with appropriate plugin. Ensure that matrix/Project matrix is enabled to fine tune access. Automate the process of setting rights/privileges in Jenkins with custom version controlled script. Limit physical access to Jenkins data/folders. Periodically run security [&#8230;]</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/how-will-you-secure-jenkins-2/">HOW WILL YOU SECURE JENKINS?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h4>How will you secure Jenkins?</h4>
<ul>
<li>Ensure global security is on.</li>
<li>Ensure that Jenkins is integrated with my company’s user directory with appropriate plugin.</li>
<li>Ensure that matrix/Project matrix is enabled to fine tune access.</li>
<li>Automate the process of setting rights/privileges in Jenkins with custom version controlled script.</li>
<li>Limit physical access to Jenkins data/folders.</li>
<li>Periodically run security audits on same.</li>
</ul>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/how-will-you-secure-jenkins-2/">HOW WILL YOU SECURE JENKINS?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pro-tekconsulting.com/blog/how-will-you-secure-jenkins-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EXPLAIN HOW TO CREATE A BACKUP AND COPY FILES IN JENKINS?</title>
		<link>http://www.pro-tekconsulting.com/blog/explain-how-to-create-a-backup-and-copy-files-in-jenkins-2/</link>
		<comments>http://www.pro-tekconsulting.com/blog/explain-how-to-create-a-backup-and-copy-files-in-jenkins-2/#comments</comments>
		<pubDate>Wed, 06 Dec 2017 06:15:15 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[JENKINS]]></category>
		<category><![CDATA[Back up in Jenkins]]></category>

		<guid isPermaLink="false">http://www.pro-tekconsulting.com/blog/?p=2284</guid>
		<description><![CDATA[<p>Explain how to create a backup and copy files in Jenkins? To create a backup all you need to do is to periodically back up your JENKINS_HOME directory. This contains all of your build jobs configurations, your slave node configurations, and your build history. To create a back-up of your Jenkins setup, just copy this directory. [&#8230;]</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/explain-how-to-create-a-backup-and-copy-files-in-jenkins-2/">EXPLAIN HOW TO CREATE A BACKUP AND COPY FILES IN JENKINS?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h4>Explain how to create a backup and copy files in Jenkins?</h4>
<p>To create a backup all you need to do is to periodically back up your JENKINS_HOME directory. This contains all of your build jobs configurations, your slave node configurations, and your build history. To create a back-up of your Jenkins setup, just copy this directory. You can also copy a job directory to clone or replicate a job or rename the directory.<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/explain-how-to-create-a-backup-and-copy-files-in-jenkins-2/">EXPLAIN HOW TO CREATE A BACKUP AND COPY FILES IN JENKINS?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pro-tekconsulting.com/blog/explain-how-to-create-a-backup-and-copy-files-in-jenkins-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOW WILL YOU SECURE JENKINS?</title>
		<link>http://www.pro-tekconsulting.com/blog/how-will-you-secure-jenkins/</link>
		<comments>http://www.pro-tekconsulting.com/blog/how-will-you-secure-jenkins/#comments</comments>
		<pubDate>Thu, 08 Jun 2017 04:00:38 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[JENKINS]]></category>
		<category><![CDATA[Jenkins]]></category>

		<guid isPermaLink="false">http://www.pro-tekconsulting.com/blog/?p=2010</guid>
		<description><![CDATA[<p>How will you secure Jenkins? The way to secure Jenkins is mentioned below :- Ensure global security is on. Ensure that Jenkins is integrated with company’s user directory with appropriate plugin. Ensure that Matrix/Project matrix is enabled to fine tune access. Automate the process of setting rights/privileges in Jenkins with custom version controlled script. Limit [&#8230;]</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/how-will-you-secure-jenkins/">HOW WILL YOU SECURE JENKINS?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h4>How will you secure Jenkins?</h4>
<p>The way to secure Jenkins is mentioned below :-<br />
Ensure global security is on.<br />
Ensure that Jenkins is integrated with company’s user directory with appropriate plugin.<br />
Ensure that Matrix/Project matrix is enabled to fine tune access.<br />
Automate the process of setting rights/privileges in Jenkins with custom version controlled script.<br />
Limit physical access to Jenkins data/folders.<br />
Periodically run security audits on same.<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
&nbsp;.<br />
&nbsp;<br />
&nbsp;</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/how-will-you-secure-jenkins/">HOW WILL YOU SECURE JENKINS?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pro-tekconsulting.com/blog/how-will-you-secure-jenkins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
