Rodger Nadal
Rodger Nadal

Reputation: 309

How to restart Jenkins in Windows

Not able to restart Jenkins manually. Already tried all below ways:

  1. http://localhost:8080/safeRestart
    Error message: Jenkins cannot restart itself as currently configured.

  2. Manage Jenkins → Restart Safely Plugin.
    Error message: Jenkins cannot restart itself as currently configured.

  3. Not able to find any Jenkins Service in services.msc.

  4. Navigate to jenkins-cli directory in CMD mode

    java -jar jenkins-cli.jar -s http://[jenkins-server]/ restart
    

    See below screenshot for error message:

    x

Upvotes: 12

Views: 29596

Answers (4)

nk07
nk07

Reputation: 161

1) Click "Start" button 2) Find and right-click Command Prompt. Then choose Run as administrator. 3) Execute the command "net stop jenkins" and "net start jenkins"

This will definitely works.

Upvotes: 2

nk07
nk07

Reputation: 161

On windows, goto Run-> type "cmd" and navigate to your jenkins installation path. Then perform the following list of commands:

To stop the jenkins:

jenkins.exe stop

To start the jenkins:

jenkins.exe start

To restart the jenkins:

jenkins.exe restart

Note:if you get an error then run the command as administrator..

Hope this will be helpful..

Upvotes: 0

Hoang
Hoang

Reputation: 857

Use command line to stop and start

net stop jenkins
net start jenkins

Upvotes: 14

Tushar Hanwate
Tushar Hanwate

Reputation: 131

Simply just do one thing.To restart Jenkins manually, you can use either of the following commands on Windows platform.

  • Clean the "AppData\Local\Temp" folder.
  • In search of windows type %temp%. then clean the folder.

Then try restarting Jenkins.

  • use java -jar jenkins.war --httpPort=8080 in cmd fo windows.
  • otherwise change the Port number.
  • java -jar jenkins.war --httpPort=8090

It worked for me!

Upvotes: 4

Related Questions