Joe.hail
Joe.hail

Reputation: 67

Jenkins server not restarting

I have a jenkins server that I am trying to restart. I have tried the following options:

http://jenkins.server/restart

http://jenkins.server/safeRestart

http://jenkins.server/exit

and when I use the uptime command it outputs: up 50 days, 2:00, 2 users, load average: 0.07, 0.05, 0.07

I've tried to use the GUI to preform the restart and it results in the same thing. Does anybody have any ideas on what could be causing this?

Upvotes: 0

Views: 1413

Answers (2)

Abhishek Sharma
Abhishek Sharma

Reputation: 11

You can stop and start jenkins service, It will force restart jenkins.

To open services type srvices.msc >> look for jenkins >> stop >> and start

Upvotes: 0

Mahbub Rahman
Mahbub Rahman

Reputation: 1343

Open terminal of the server where Jenkins is installed and run below command as root:

service jenkins restart

or

service jenkins stop
service jenkins start

Upvotes: 1

Related Questions