Hello DevOps Guys, We will install the Jenkins Controller on the Windows machine.
How to install Jenkins on Windows machine?
Here in this post we will explore Step-by-Step installation instructions for Jenkins on Windows platform.
Jenkins installation on Windows |
Step 1: Install and set Java
Please visit the Oracle Java SE download page: http://www.oracle.com/technetwork/java/javase/downloads/index.html .
Oracle providing the new option on the download page, that is "JDK Script Friendly URLs" page. Choose the JDK for your operating system (Windows 10 or 11) 64bit to download. Double click downloaded file launches installer wizard, proceed with the agree and set up the installation location as per your disk/drive availability.
Verification of Java installation
Open a CMD prompt run "java -version" if Java installed correctly in the PATH you will get the installed version as output. if not set the PATH from the type ENVIRONMENT VARAIABLES search ->EDIT ENVIRONMENT VARAIABLES in the USER VARIABLES section add new variable as JAVA_HOME -> C:\Program Files\Java. and then set PATH with %JAVA_HOME%\bin;%PATH% and launch a fresh CMD prompt and re-test.
java -versionSetting JAVA_HOME path manually on your CMD
SET JAVA_HOME="C:\Program Files\Java\jdk-11.0.14" SET PATH= %JAVA_HOME%\bin;%PATH% java -versionshould return Java version as jdk-11.0.14.
Checking Java version on Windows Command Prompt |
Once Java all set then next we are good to go for Jenkins download.
Step 2: Download and install Jenkins
I believe that a Picture tells 1000 words of worth! visit jenkins download page link, you may be on Windows 10 or 11(At the time of this blog post Windows versions).
Jenkins download for Windows |
2.1 Welcome Screen
Jenkins completed setup |
Step 3: How to run Jenkins server on Windows?
cd "C:\Program Files\Jenkins" java -jar jenkins.war
Jenkins start using java jar command defender firewall protection |
java -jar jenkins.war --httpPort=9090
Step 4: Launch the Jenkins Controller on Browser
Jenkins console access on Windows machine |