top of page
  • Writer's picturekhyati sehgal

Jenkins installation – A continuous integration continuous delivery tool

Jenkins is a very useful tool not for the DevOps engineer but for the whole agile team. From coding to the last deployment of code it is a widely accepted tool of continuous integration. In this blog post, I will be sharing the steps to install Jenkins.

Jenkins can be installed on the local machine as well as server-client set up in the same way a new software can be added to the Application list.

Start with downloading Jenkins from https://jenkins.io/download/

jenkins-download-01

Select the required version

jenkins-dowload

Wait until the download completes

Once Jenkins will be downloaded to the required machine, follow these steps.






And the other way is to make it rawer and closer. So for that, you need to download either war or jar of Jenkins. Keeping in mind that Java set up is a prerequisite for setting this up.

Download Jenkins war, from here:-

Once Jenkins will be downloaded to the required machine, just follow these steps.

  1. Open Console.

  2. Go to the folder containing Jenkins’s war.

  3. Run this command java -jar Jenkins.war

This will start the Jenkins server on the localhost with default port i.e. 8080.

If you want to start Jenkins server on some other port then the way is to use HTTP port as an argument while starting up the server via a console.

Now check the Jenkins is up and running by hitting localhost on the same machine or via IP of the machine.



Once the set up is done you are ready to create new credentials to start working with Jenkins.

I will be sharing more details in my next blog about the configurations and set up.

Till then stay tuned!

0 views0 comments

Recent Posts

See All

JavaScript elements handling in selenium

As we see most of the applications are moving towards development with Angular, React, Aurelia, JS, TS bases scripting language and framework which uses these scripting languages. When it comes to Qua

Setting loggers in Selenium with log4j

Imports to make import java.io.File; import java.io.IOException; import org.apache.log4j.ConsoleAppender; import org.apache.log4j.Level; import org.apache.log4j.LogManager; import org.apache.log4j.Log

bottom of page