Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've just started working with Jenkins and have run into a problem. After installing several plugins it said it needs to be restarted and went into a "shutting down" mode, but never restarts.

How do I do a manual restart?

share|improve this question
9  
Note: "Jenkins is Shutting Down" doesn't actually shut down, it just notifies the various users that might want to build something that Jenkins is gonna be restarted soon. – Khez Aug 3 '12 at 11:42

8 Answers

up vote 192 down vote accepted

Go to (jenkins_url)/safeRestart. This will allow all running builds to complete.

(jenkins_url)/restart will force a restart without waiting for builds to complete.

share|improve this answer
Perfect! Thanks – Kerry Nov 10 '11 at 20:49
45  
(jenkins_url)/safeRestart will allow existing jobs to finish, and restart when they are complete. New jobs will remain in the queue to run after the restart is complete. – recampbell Jan 19 '12 at 17:03
2  
I wish @recampbell's comment were in the actual answer. Why? Because I'm not a careful reader. – kojiro Jan 16 at 13:47
Is there an equivalen of the safeRestart but done using Shell command? – kimsia Mar 9 at 6:31
Found it. sudo service jenkins restart – kimsia Mar 9 at 6:43

If you installed as an rpm, then service jenkins restart will work also.

share|improve this answer
Or installed as a deb. – fabb Aug 21 '12 at 12:04

This can also be done using Jenkins CLI

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

The jenkins-cli.jar file along with full list of commands are available at http://[jenkins-server]/cli

share|improve this answer
Do you know maybe, how to uninstall Jenkins completely? – jayarjo Jul 23 '12 at 8:37

On Ubuntu when installed through apt-get/dpkg:

$ sudo /etc/init.d/jenkins restart

Usage: /etc/init.d/jenkins {start|stop|status|restart|force-reload}

share|improve this answer

If you run FreeBSD:

/usr/local/etc/rc.d/jenkins restart
share|improve this answer

If it is deployed war file then restart the application server eg tomcat,

share|improve this answer

On Windows if you installed it as a service go to Services( Start -> Run : services.msc), find Jenkins, right click -> Restart.

If it does not help(UI is not responding) open Windows Task Manager -> Processes, kill java.exe process and restart service once again.

share|improve this answer

Use the command line interface https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+CLI

java -jar jenkins-cli.jar -s http://yourjenkins.Com:8080/ -i /root/.ssh/id_rsa safe-restart

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.