Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have installed Jenkins using .dmg file in MAC (10.6.8).

Installed directories:

Users/Shared/Jenkins - with all the plugins, war, jobs, usercontent, etc.
Applications/Jenkins - which is having the jenkins.war alone.

When the system boots, the jenkins started looking for the war and starting it. I'm able to access it via http://localhost:8080.

But I want that service to be stopped somehow and couldn't figure out how to do that.

Any suggestions on stopping it and starting it via command would be of greater help.

share|improve this question
Can you tell me which command you used to stop it. I used jettyserver/exit but seems it is not working. – Jignesh Sheth Aug 21 '11 at 4:42
Hey @JigneshSheth I used daniel's answer – techastute Sep 6 '12 at 23:23

4 Answers

up vote 36 down vote accepted

Just unload the plist using launchctl

sudo launchctl unload /Library/LaunchDaemons/org.jenkins-ci.plist
share|improve this answer
2  
If in case you want to again have your jenkins started.. just use the reverse of the above --- sudo launchctl load /Library/LaunchDaemons/org.jenkins-ci.plist – techastute Apr 19 '12 at 17:21
Doesn't work in 10.8.3 – dig Apr 29 at 11:50

Look for and remove a Jenkins file in one of these directories:

/Library/LaunchDaemons
/Library/LaunchAgents
/Library/StartupItems

Chances are it is in one of them.

Update: The current Jenkins-1.424.pkg downloaded from http://jenkins-ci.org/ installs a plist here:

cd /Library/LaunchDaemons
ls -l org.jenkins-ci.plist

You can remove it with:

sudo rm /Library/LaunchDaemons/org.jenkins-ci.plist
share|improve this answer
thanks for the response..but sorry.. none of the above mentioned directories there inside my library.. there should be some sort of command to stop that service... – techastute Aug 5 '11 at 20:03
See the update. The current Jenkins OS X package does indeed install a launchd plist into /Library/LaunchDaemons. – Ned Deily Aug 5 '11 at 20:35
2  
On Jenkins ver. 1.409.1 this file is found under /Library/LaunchAgents – Verhagen Sep 15 '11 at 15:23

There's a brilliant tool called Suspicious Package which lets you do a QuickLook into pkg files and see what scripts they run and files they install:

http://www.mothersruin.com/software/SuspiciousPackage/download.html

You just press space on the PKG file in Finder and it lists scripts, directories and files.

Very useful!

share|improve this answer

For 1.505 you can use web api

http://localhost:8080/exit
http://localhost:8080/restart
http://localhost:8080/reload
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.