Jenkins
  • Introduction
  • 1. Jenkins Basics
    • 1.1 Run Jenkins as-is
    • 1.2 Installation of Jenkins
    • 1.3 Installation of jenkins on Tomcat
  • 2. Jenkins Configurations
    • 2.1 Configure Jenkins Slave
    • 2.2 Configure SonarQube with Jenkins
    • 2.3 Configure SilkCentral with Jenkins
    • 2.4 Configure TestNG with Jenkins
  • 3. How to use Jenkins
    • 3.1 Create jobs
    • 3.2 Run jobs
    • 3.3 Run Single Job Parallely in Multiple slaves
  • 4. Jenkins Integrations
    • 4.1 Analysis with SonarQube using Jenkins
    • 4.2 SCTM Result Analysis with Jenkins
    • 4.3 TestNG Result Analysis with Jenkins
  • 5. Jenkins Advanced
    • 5.1Jenkins Challenges
Powered by GitBook
On this page
  • Install Jenkins from the War File
  • Accessing Jenkins
  • References

Was this helpful?

  1. 1. Jenkins Basics

1.2 Installation of Jenkins

Previous1.1 Run Jenkins as-isNext1.3 Installation of jenkins on Tomcat

Last updated 5 years ago

Was this helpful?

Install Jenkins from the War File

Below are steps to install jenkins from the WAR file.

  1. Download the latest Jenkins war file .

  2. The easiest way to execute Jenkins is through the built in Jetty servlet container. You can execute Jenkins like this:

$ java -jar jenkins.war

Of course, you probably want to send the output of Jenkins to a log file, and if you're on Unix, you probably want to use nohup:

$ nohup java -jar jenkins.war > $LOGFILE 2>&1

Accessing Jenkins

To see Jenkins, simply bring up a web browser and go to URL where myServer is the name of the system running Jenkins.

References

here
http://myServer:8080
Jenkins Website
Install Jenkins
Start and Configure Jenkins